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.
1 parent c3d60ab commit 7389b0aCopy full SHA for 7389b0a
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