Skip to content

Commit bfa854d

Browse files
authored
Rollup merge of #79363 - ssomers:btree_cleanup_comments, r=Mark-Simulacrum
BTreeMap: try to enhance various comments All in internal documentation, propagating the "key-value pair" notation from public documentation. r? ``@Mark-Simulacrum``
2 parents 858b44a + d1a2c0f commit bfa854d

File tree

7 files changed

+118
-89
lines changed

7 files changed

+118
-89
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -459,7 +459,7 @@ impl<'a, K: Ord, V> OccupiedEntry<'a, K, V> {
459459
self.remove_kv().1
460460
}
461461

462-
// Body of `remove_entry`, separate to keep the above implementations short.
462+
// Body of `remove_entry`, probably separate because the name reflects the returned pair.
463463
pub(super) fn remove_kv(self) -> (K, V) {
464464
let mut emptied_internal_root = false;
465465
let (old_kv, _) = self.handle.remove_kv_tracking(|| emptied_internal_root = true);

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

+9
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ use super::search::{self, SearchResult};
99
use super::unwrap_unchecked;
1010

1111
/// Finds the leaf edges delimiting a specified range in or underneath a node.
12+
///
13+
/// The result is meaningful only if the tree is ordered by key, like the tree
14+
/// in a `BTreeMap` is.
1215
fn range_search<BorrowType, K, V, Q, R>(
1316
root1: NodeRef<BorrowType, K, V, marker::LeafOrInternal>,
1417
root2: NodeRef<BorrowType, K, V, marker::LeafOrInternal>,
@@ -122,6 +125,9 @@ fn full_range<BorrowType, K, V>(
122125

123126
impl<'a, K: 'a, V: 'a> NodeRef<marker::Immut<'a>, K, V, marker::LeafOrInternal> {
124127
/// Creates a pair of leaf edges delimiting a specified range in or underneath a node.
128+
///
129+
/// The result is meaningful only if the tree is ordered by key, like the tree
130+
/// in a `BTreeMap` is.
125131
pub fn range_search<Q, R>(
126132
self,
127133
range: R,
@@ -152,6 +158,9 @@ impl<'a, K: 'a, V: 'a> NodeRef<marker::ValMut<'a>, K, V, marker::LeafOrInternal>
152158
/// Splits a unique reference into a pair of leaf edges delimiting a specified range.
153159
/// The result are non-unique references allowing (some) mutation, which must be used
154160
/// carefully.
161+
///
162+
/// The result is meaningful only if the tree is ordered by key, like the tree
163+
/// in a `BTreeMap` is.
155164
pub fn range_search<Q, R>(
156165
self,
157166
range: R,

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

+91-77
Large diffs are not rendered by default.

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use super::unwrap_unchecked;
44
use core::mem;
55

66
impl<'a, K: 'a, V: 'a> Handle<NodeRef<marker::Mut<'a>, K, V, marker::LeafOrInternal>, marker::KV> {
7-
/// Removes a key/value-pair from the tree, and returns that pair, as well as
7+
/// Removes a key-value pair from the tree, and returns that pair, as well as
88
/// the leaf edge corresponding to that former pair. It's possible this empties
99
/// a root node that is internal, which the caller should pop from the map
1010
/// holding the tree. The caller should also decrement the map's length.

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

+13-7
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ pub enum SearchResult<BorrowType, K, V, FoundType, GoDownType> {
1414
/// Returns a `Found` with the handle of the matching KV, if any. Otherwise,
1515
/// returns a `GoDown` with the handle of the possible leaf edge where the key
1616
/// belongs.
17+
///
18+
/// The result is meaningful only if the tree is ordered by key, like the tree
19+
/// in a `BTreeMap` is.
1720
pub fn search_tree<BorrowType, K, V, Q: ?Sized>(
1821
mut node: NodeRef<BorrowType, K, V, marker::LeafOrInternal>,
1922
key: &Q,
@@ -38,8 +41,11 @@ where
3841

3942
/// Looks up a given key in a given node, without recursion.
4043
/// Returns a `Found` with the handle of the matching KV, if any. Otherwise,
41-
/// returns a `GoDown` with the handle of the edge where the key might be found.
42-
/// If the node is a leaf, a `GoDown` edge is not an actual edge but a possible edge.
44+
/// returns a `GoDown` with the handle of the edge where the key might be found
45+
/// (if the node is internal) or where the key can be inserted.
46+
///
47+
/// The result is meaningful only if the tree is ordered by key, like the tree
48+
/// in a `BTreeMap` is.
4349
pub fn search_node<BorrowType, K, V, Type, Q: ?Sized>(
4450
node: NodeRef<BorrowType, K, V, Type>,
4551
key: &Q,
@@ -54,11 +60,11 @@ where
5460
}
5561
}
5662

57-
/// Returns the index in the node at which the key (or an equivalent) exists
58-
/// or could exist, and whether it exists in the node itself. If it doesn't
59-
/// exist in the node itself, it may exist in the subtree with that index
60-
/// (if the node has subtrees). If the key doesn't exist in node or subtree,
61-
/// the returned index is the position or subtree where the key belongs.
63+
/// Returns either the KV index in the node at which the key (or an equivalent)
64+
/// exists and `true`, or the edge index where the key belongs and `false`.
65+
///
66+
/// The result is meaningful only if the tree is ordered by key, like the tree
67+
/// in a `BTreeMap` is.
6268
fn search_linear<BorrowType, K, V, Type, Q: ?Sized>(
6369
node: &NodeRef<BorrowType, K, V, Type>,
6470
key: &Q,

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ impl<T: fmt::Debug> fmt::Debug for Union<'_, T> {
214214
// This constant is used by functions that compare two sets.
215215
// It estimates the relative size at which searching performs better
216216
// than iterating, based on the benchmarks in
217-
// https://github.com/ssomers/rust_bench_btreeset_intersection;
217+
// https://github.com/ssomers/rust_bench_btreeset_intersection.
218218
// It's used to divide rather than multiply sizes, to rule out overflow,
219219
// and it's a power of two to make that division cheap.
220220
const ITER_PERFORMANCE_TIPPING_SIZE_DIFF: usize = 16;

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ impl<K, V> Root<K, V> {
2323
loop {
2424
let mut split_edge = match search_node(left_node, key) {
2525
// key is going to the right tree
26-
Found(handle) => handle.left_edge(),
27-
GoDown(handle) => handle,
26+
Found(kv) => kv.left_edge(),
27+
GoDown(edge) => edge,
2828
};
2929

3030
split_edge.move_suffix(&mut right_node);

0 commit comments

Comments
 (0)