File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
core/patina_internal_collections/src Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 3232 ///
3333 /// This is useful for creating a tree at compile time and replacing the memory later. Use
3434 /// [with_capacity](Self::with_capacity) to create a tree with a given slice of memory immediately. Otherwise use
35- /// [resize ](Self::resize ) to replace the memory later.
35+ /// [expand ](Self::expand ) to replace the memory later.
3636 pub const fn new ( ) -> Self {
3737 Bst { storage : Storage :: new ( ) , root : Cell :: new ( core:: ptr:: null_mut ( ) ) }
3838 }
Original file line number Diff line number Diff line change 3434 ///
3535 /// This is useful for creating a tree at compile time and replacing the memory later. Use
3636 /// [with_capacity](Self::with_capacity) to create a tree with a given slice of memory immediately. Otherwise use
37- /// [resize ](Self::resize ) to replace the memory later.
37+ /// [expand ](Self::expand ) to replace the memory later.
3838 pub const fn new ( ) -> Self {
3939 Rbt { storage : Storage :: new ( ) , root : Cell :: new ( core:: ptr:: null_mut ( ) ) }
4040 }
You can’t perform that action at this time.
0 commit comments