We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 04fe212 + 7389b0a commit 0b70f27Copy full SHA for 0b70f27
src/libcollections/vec.rs
@@ -11,7 +11,8 @@
11
//! A growable list type with heap-allocated contents, written `Vec<T>` but
12
//! pronounced 'vector.'
13
//!
14
-//! Vectors have `O(1)` indexing, push (to the end) and pop (from the end).
+//! Vectors have `O(1)` indexing, amortized `O(1)` push (to the end) and
15
+//! `O(1)` pop (from the end).
16
17
//! # Examples
18
0 commit comments