We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a9672c2 + fdf444d commit 4074893Copy full SHA for 4074893
src/libstd/collections/mod.rs
@@ -64,11 +64,11 @@
64
//! * You want a map, with no extra functionality.
65
//!
66
//! ### Use a `BTreeMap` when:
67
+//! * You want a map sorted by its keys.
68
+//! * You want to be able to get a range of entries on-demand.
69
//! * You're interested in what the smallest or largest key-value pair is.
70
//! * You want to find the largest or smallest key that is smaller or larger
71
//! than something.
-//! * You want to be able to get all of the entries in order on-demand.
-//! * You want a map sorted by its keys.
72
73
//! ### Use the `Set` variant of any of these `Map`s when:
74
//! * You just want to remember which keys you've seen.
0 commit comments