We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c416983 commit 5e8d469Copy full SHA for 5e8d469
1 file changed
graph/examples/stress.rs
@@ -48,13 +48,12 @@ static mut PRINT_SAMPLES: bool = false;
48
/// number of entries divided by `NODE_FILL`, and the number of
49
/// interior nodes can be determined by dividing the number of nodes
50
/// at the child level by `NODE_FILL`
51
-
+///
52
/// The other difficulty is that the structs with which `BTreeMap`
53
/// represents internal and leaf nodes are not public, so we can't
54
/// get their size with `std::mem::size_of`; instead, we base our
55
/// estimates of their size on the current `std` code, assuming that
56
/// these structs will not change
57
58
mod btree {
59
use std::mem;
60
use std::{mem::MaybeUninit, ptr::NonNull};
0 commit comments