We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
vec::split_off()
1 parent 8c7530a commit a36c3f6Copy full SHA for a36c3f6
src/liballoc/vec.rs
@@ -1333,10 +1333,9 @@ impl<T> Vec<T> {
1333
1334
/// Splits the collection into two at the given index.
1335
///
1336
- /// Copies the range from `[at, len)` to a newly allocated `Self`
1337
- /// and returns the result. The original `Self` will contain the
1338
- /// range from `[0, at)`. Note that the capacity of `self` does
1339
- /// not change.
+ /// Returns a newly allocated vector containing the elements in the range
+ /// `[at, len)`. After the call, the original vector will be left containing
+ /// the elements `[0, at)` with its previous capacity unchanged.
1340
1341
/// # Panics
1342
0 commit comments