diff options
Diffstat (limited to 'library/cpp/deprecated/accessors/README.md')
-rw-r--r-- | library/cpp/deprecated/accessors/README.md | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/library/cpp/deprecated/accessors/README.md b/library/cpp/deprecated/accessors/README.md new file mode 100644 index 0000000000..498f1203e0 --- /dev/null +++ b/library/cpp/deprecated/accessors/README.md @@ -0,0 +1,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. |