mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-28 02:57:37 +00:00
Rollup merge of #81499 - SOF3:patch-1, r=sanxiyn
Updated Vec::splice documentation Replacing with equal number of values does not increase the length of the vec. Reference: https://stackoverflow.com/a/62559271/3990767
This commit is contained in:
commit
0f11a943cc
@ -2211,7 +2211,7 @@ impl<T, A: Allocator> Vec<T, A> {
|
||||
/// This is optimal if:
|
||||
///
|
||||
/// * The tail (elements in the vector after `range`) is empty,
|
||||
/// * or `replace_with` yields fewer elements than `range`’s length
|
||||
/// * or `replace_with` yields fewer or equal elements than `range`’s length
|
||||
/// * or the lower bound of its `size_hint()` is exact.
|
||||
///
|
||||
/// Otherwise, a temporary vector is allocated and the tail is moved twice.
|
||||
|
Loading…
Reference in New Issue
Block a user