mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
Rollup merge of #90480 - r00ster91:remove, r=kennytm
Mention `Vec::remove` in `Vec::swap_remove`'s docs Thought this was a nice addition.
This commit is contained in:
commit
3e97d9bd97
@ -1272,6 +1272,9 @@ impl<T, A: Allocator> Vec<T, A> {
|
|||||||
/// The removed element is replaced by the last element of the vector.
|
/// The removed element is replaced by the last element of the vector.
|
||||||
///
|
///
|
||||||
/// This does not preserve ordering, but is *O*(1).
|
/// This does not preserve ordering, but is *O*(1).
|
||||||
|
/// If you need to preserve the element order, use [`remove`] instead.
|
||||||
|
///
|
||||||
|
/// [`remove`]: Vec::remove
|
||||||
///
|
///
|
||||||
/// # Panics
|
/// # Panics
|
||||||
///
|
///
|
||||||
@ -1368,7 +1371,7 @@ impl<T, A: Allocator> Vec<T, A> {
|
|||||||
/// shifting all elements after it to the left.
|
/// shifting all elements after it to the left.
|
||||||
///
|
///
|
||||||
/// Note: Because this shifts over the remaining elements, it has a
|
/// Note: Because this shifts over the remaining elements, it has a
|
||||||
/// worst-case performance of O(n). If you don't need the order of elements
|
/// worst-case performance of *O*(*n*). If you don't need the order of elements
|
||||||
/// to be preserved, use [`swap_remove`] instead.
|
/// to be preserved, use [`swap_remove`] instead.
|
||||||
///
|
///
|
||||||
/// [`swap_remove`]: Vec::swap_remove
|
/// [`swap_remove`]: Vec::swap_remove
|
||||||
|
Loading…
Reference in New Issue
Block a user