Skip to content

Commit 65d4734

Browse files
committed
Address review comments
1 parent 9057a6d commit 65d4734

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

library/alloc/src/collections/btree/map.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ pub(super) const MIN_LEN: usize = node::MIN_LEN_AFTER_SPLIT;
6565
/// incorrect results, aborts, memory leaks, or non-termination) but will not be undefined
6666
/// behavior.
6767
///
68-
/// Entries in a `BTreeMap` are stored in ascending order according to the [`Ord`] implementation on the key.
69-
/// Thus, iteration methods are guaranteed to produce iterators that yield items in that order.
68+
/// Iterators yielded by functions such as [`BTreeMap::iter`], [`BTreeMap::values`], or [`BTreeMap::keys`]
69+
/// yield their items in order by key, and take worst-case logarithmic and amortized constant time per item yielded.
7070
///
7171
/// [B-Tree]: https://en.wikipedia.org/wiki/B-tree
7272
/// [`Cell`]: core::cell::Cell

library/alloc/src/collections/btree/set.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ use super::Recover;
2727
/// incorrect results, aborts, memory leaks, or non-termination) but will not be undefined
2828
/// behavior.
2929
///
30-
/// Entries in a `BTreeSet` are stored in ascending order according to the [`Ord`] implementation on the key.
31-
/// Thus, iteration methods are guaranteed to produce iterators that yield items in that order.
30+
/// Iterators returned by [`BTreeSet::iter`] yield their items in order,
31+
/// and take worst-case logarithmic and amortized constant time per item yielded.
3232
///
3333
/// [`Ord`]: core::cmp::Ord
3434
/// [`Cell`]: core::cell::Cell

0 commit comments

Comments
 (0)