Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(244)

Side by Side Diff: base/containers/README.md

Issue 2825853002: Improvements to uses of base::SmallMap (Closed)
Patch Set: Review comments Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | base/containers/small_map.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # base/containers library
2
3 This directory contains some STL-like containers.
4
5 Things should be moved here that are generally applicable across the code base.
6 Don't add things here just because you need them in one place and think others
7 may someday want something similar. You can put specialized containers in
8 your component's directory and we can promote them here later if we feel there
9 is broad applicability.
10
11 ## Design and naming
12
13 Containers should adhere as closely to STL as possible. Functions and behaviors
14 not present in STL should only be added when they are related to the specific
15 data structure implemented by the container.
16
17 For STL-like containers our policy is that they should use STL-like naming even
18 when it may conflict with the style guide. So functions and class names should
19 be lower case with underscores. Non-STL-like classes and functions should use
20 Google naming. Be sure to use the base namespace.
OLDNEW
« no previous file with comments | « no previous file | base/containers/small_map.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698