We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 33cd862 + 56c2736 commit 635dbd6Copy full SHA for 635dbd6
library/std/src/collections/mod.rs
@@ -110,10 +110,10 @@
110
//!
111
//! For Sets, all operations have the cost of the equivalent Map operation.
112
113
-//! | | get | insert | remove | predecessor | append |
114
-//! |--------------|-----------|-----------|-----------|-------------|--------|
115
-//! | [`HashMap`] | O(1)~ | O(1)~* | O(1)~ | N/A | N/A |
116
-//! | [`BTreeMap`] | O(log(n)) | O(log(n)) | O(log(n)) | O(log(n)) | O(n+m) |
+//! | | get | insert | remove | range | append |
+//! |--------------|-----------|-----------|-----------|-----------|--------|
+//! | [`HashMap`] | O(1)~ | O(1)~* | O(1)~ | N/A | N/A |
+//! | [`BTreeMap`] | O(log(n)) | O(log(n)) | O(log(n)) | O(log(n)) | O(n+m) |
117
118
//! # Correct and Efficient Usage of Collections
119
0 commit comments