Skip to content

Commit 0e11fc8

Browse files
committed
Auto merge of #74652 - poliorcetics:clarify-vec-drain-doc, r=jyn514
Improve the documentation for Vec::drain Fixes #73844. @rusbot modify labels: A-collections, C-enhancement, T-doc, T-libs
2 parents c4e1734 + 654c180 commit 0e11fc8

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

src/liballoc/vec.rs

+4-5
Original file line numberDiff line numberDiff line change
@@ -1274,11 +1274,10 @@ impl<T> Vec<T> {
12741274
/// Creates a draining iterator that removes the specified range in the vector
12751275
/// and yields the removed items.
12761276
///
1277-
/// Note 1: The element range is removed even if the iterator is only
1278-
/// partially consumed or not consumed at all.
1279-
///
1280-
/// Note 2: It is unspecified how many elements are removed from the vector
1281-
/// if the `Drain` value is leaked.
1277+
/// When the iterator **is** dropped, all elements in the range are removed
1278+
/// from the vector, even if the iterator was not fully consumed. If the
1279+
/// iterator **is not** dropped (with [`mem::forget`] for example), it is
1280+
/// unspecified how many elements are removed.
12821281
///
12831282
/// # Panics
12841283
///

0 commit comments

Comments
 (0)