aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/deprecated/accessors/README.md
blob: 498f1203e00ca63a608e6ba29597d1cdcc6fe6c8 (plain) (blame)
1
2
3
4
5
Unified accessors for Arcadia containers and user types.

Accessors implemented here mix different kinds of access at the wrong abstraction level, so they shouldn't be used.

If you want begin/end/size for your containers, use std::begin, std::end, std::size. If you need generic reserve / resize / clear / insert, just use appropriate container methods or do your own overloads in place.