@@ -489,7 +489,7 @@ impl<'a, K: 'a, V: 'a, Type> NodeRef<marker::Mut<'a>, K, V, Type> {
489
489
///
490
490
/// # Safety
491
491
/// `index` is in bounds of 0..CAPACITY
492
- unsafe fn key_area_mut_at < I , Output : ?Sized > ( & mut self , index : I ) -> & mut Output
492
+ unsafe fn key_area_mut < I , Output : ?Sized > ( & mut self , index : I ) -> & mut Output
493
493
where
494
494
I : SliceIndex < [ MaybeUninit < K > ] , Output = Output > ,
495
495
{
@@ -503,7 +503,7 @@ impl<'a, K: 'a, V: 'a, Type> NodeRef<marker::Mut<'a>, K, V, Type> {
503
503
///
504
504
/// # Safety
505
505
/// `index` is in bounds of 0..CAPACITY
506
- unsafe fn val_area_mut_at < I , Output : ?Sized > ( & mut self , index : I ) -> & mut Output
506
+ unsafe fn val_area_mut < I , Output : ?Sized > ( & mut self , index : I ) -> & mut Output
507
507
where
508
508
I : SliceIndex < [ MaybeUninit < V > ] , Output = Output > ,
509
509
{
@@ -519,7 +519,7 @@ impl<'a, K: 'a, V: 'a> NodeRef<marker::Mut<'a>, K, V, marker::Internal> {
519
519
///
520
520
/// # Safety
521
521
/// `index` is in bounds of 0..CAPACITY + 1
522
- unsafe fn edge_area_mut_at < I , Output : ?Sized > ( & mut self , index : I ) -> & mut Output
522
+ unsafe fn edge_area_mut < I , Output : ?Sized > ( & mut self , index : I ) -> & mut Output
523
523
where
524
524
I : SliceIndex < [ MaybeUninit < BoxedNode < K , V > > ] , Output = Output > ,
525
525
{
@@ -583,8 +583,8 @@ impl<'a, K: 'a, V: 'a> NodeRef<marker::Mut<'a>, K, V, marker::Leaf> {
583
583
assert ! ( idx < CAPACITY ) ;
584
584
* len += 1 ;
585
585
unsafe {
586
- self . key_area_mut_at ( idx) . write ( key) ;
587
- self . val_area_mut_at ( idx) . write ( val) ;
586
+ self . key_area_mut ( idx) . write ( key) ;
587
+ self . val_area_mut ( idx) . write ( val) ;
588
588
}
589
589
}
590
590
@@ -593,8 +593,8 @@ impl<'a, K: 'a, V: 'a> NodeRef<marker::Mut<'a>, K, V, marker::Leaf> {
593
593
let new_len = self . len ( ) + 1 ;
594
594
assert ! ( new_len <= CAPACITY ) ;
595
595
unsafe {
596
- slice_insert ( self . key_area_mut_at ( ..new_len) , 0 , key) ;
597
- slice_insert ( self . val_area_mut_at ( ..new_len) , 0 , val) ;
596
+ slice_insert ( self . key_area_mut ( ..new_len) , 0 , key) ;
597
+ slice_insert ( self . val_area_mut ( ..new_len) , 0 , val) ;
598
598
* self . len_mut ( ) = new_len as u16 ;
599
599
}
600
600
}
@@ -627,9 +627,9 @@ impl<'a, K: 'a, V: 'a> NodeRef<marker::Mut<'a>, K, V, marker::Internal> {
627
627
assert ! ( idx < CAPACITY ) ;
628
628
* len += 1 ;
629
629
unsafe {
630
- self . key_area_mut_at ( idx) . write ( key) ;
631
- self . val_area_mut_at ( idx) . write ( val) ;
632
- self . edge_area_mut_at ( idx + 1 ) . write ( edge. node ) ;
630
+ self . key_area_mut ( idx) . write ( key) ;
631
+ self . val_area_mut ( idx) . write ( val) ;
632
+ self . edge_area_mut ( idx + 1 ) . write ( edge. node ) ;
633
633
Handle :: new_edge ( self . reborrow_mut ( ) , idx + 1 ) . correct_parent_link ( ) ;
634
634
}
635
635
}
@@ -642,9 +642,9 @@ impl<'a, K: 'a, V: 'a> NodeRef<marker::Mut<'a>, K, V, marker::Internal> {
642
642
assert ! ( new_len <= CAPACITY ) ;
643
643
644
644
unsafe {
645
- slice_insert ( self . key_area_mut_at ( ..new_len) , 0 , key) ;
646
- slice_insert ( self . val_area_mut_at ( ..new_len) , 0 , val) ;
647
- slice_insert ( self . edge_area_mut_at ( ..new_len + 1 ) , 0 , edge. node ) ;
645
+ slice_insert ( self . key_area_mut ( ..new_len) , 0 , key) ;
646
+ slice_insert ( self . val_area_mut ( ..new_len) , 0 , val) ;
647
+ slice_insert ( self . edge_area_mut ( ..new_len + 1 ) , 0 , edge. node ) ;
648
648
* self . len_mut ( ) = new_len as u16 ;
649
649
}
650
650
@@ -662,12 +662,12 @@ impl<'a, K: 'a, V: 'a> NodeRef<marker::Mut<'a>, K, V, marker::LeafOrInternal> {
662
662
let idx = self . len ( ) - 1 ;
663
663
664
664
unsafe {
665
- let key = self . key_area_mut_at ( idx) . assume_init_read ( ) ;
666
- let val = self . val_area_mut_at ( idx) . assume_init_read ( ) ;
665
+ let key = self . key_area_mut ( idx) . assume_init_read ( ) ;
666
+ let val = self . val_area_mut ( idx) . assume_init_read ( ) ;
667
667
let edge = match self . reborrow_mut ( ) . force ( ) {
668
668
ForceResult :: Leaf ( _) => None ,
669
669
ForceResult :: Internal ( mut internal) => {
670
- let node = internal. edge_area_mut_at ( idx + 1 ) . assume_init_read ( ) ;
670
+ let node = internal. edge_area_mut ( idx + 1 ) . assume_init_read ( ) ;
671
671
let mut edge = Root { node, height : internal. height - 1 , _marker : PhantomData } ;
672
672
// Currently, clearing the parent link is superfluous, because we will
673
673
// insert the node elsewhere and set its parent link again.
@@ -690,12 +690,12 @@ impl<'a, K: 'a, V: 'a> NodeRef<marker::Mut<'a>, K, V, marker::LeafOrInternal> {
690
690
let old_len = self . len ( ) ;
691
691
692
692
unsafe {
693
- let key = slice_remove ( self . key_area_mut_at ( ..old_len) , 0 ) ;
694
- let val = slice_remove ( self . val_area_mut_at ( ..old_len) , 0 ) ;
693
+ let key = slice_remove ( self . key_area_mut ( ..old_len) , 0 ) ;
694
+ let val = slice_remove ( self . val_area_mut ( ..old_len) , 0 ) ;
695
695
let edge = match self . reborrow_mut ( ) . force ( ) {
696
696
ForceResult :: Leaf ( _) => None ,
697
697
ForceResult :: Internal ( mut internal) => {
698
- let node = slice_remove ( internal. edge_area_mut_at ( ..old_len + 1 ) , 0 ) ;
698
+ let node = slice_remove ( internal. edge_area_mut ( ..old_len + 1 ) , 0 ) ;
699
699
let mut edge = Root { node, height : internal. height - 1 , _marker : PhantomData } ;
700
700
// Currently, clearing the parent link is superfluous, because we will
701
701
// insert the node elsewhere and set its parent link again.
@@ -919,11 +919,11 @@ impl<'a, K: 'a, V: 'a> Handle<NodeRef<marker::Mut<'a>, K, V, marker::Leaf>, mark
919
919
let new_len = self . node . len ( ) + 1 ;
920
920
921
921
unsafe {
922
- slice_insert ( self . node . key_area_mut_at ( ..new_len) , self . idx , key) ;
923
- slice_insert ( self . node . val_area_mut_at ( ..new_len) , self . idx , val) ;
922
+ slice_insert ( self . node . key_area_mut ( ..new_len) , self . idx , key) ;
923
+ slice_insert ( self . node . val_area_mut ( ..new_len) , self . idx , val) ;
924
924
* self . node . len_mut ( ) = new_len as u16 ;
925
925
926
- self . node . val_area_mut_at ( self . idx ) . assume_init_mut ( )
926
+ self . node . val_area_mut ( self . idx ) . assume_init_mut ( )
927
927
}
928
928
}
929
929
}
@@ -978,9 +978,9 @@ impl<'a, K: 'a, V: 'a> Handle<NodeRef<marker::Mut<'a>, K, V, marker::Internal>,
978
978
let new_len = self . node . len ( ) + 1 ;
979
979
980
980
unsafe {
981
- slice_insert ( self . node . key_area_mut_at ( ..new_len) , self . idx , key) ;
982
- slice_insert ( self . node . val_area_mut_at ( ..new_len) , self . idx , val) ;
983
- slice_insert ( self . node . edge_area_mut_at ( ..new_len + 1 ) , self . idx + 1 , edge. node ) ;
981
+ slice_insert ( self . node . key_area_mut ( ..new_len) , self . idx , key) ;
982
+ slice_insert ( self . node . val_area_mut ( ..new_len) , self . idx , val) ;
983
+ slice_insert ( self . node . edge_area_mut ( ..new_len + 1 ) , self . idx + 1 , edge. node ) ;
984
984
* self . node . len_mut ( ) = new_len as u16 ;
985
985
986
986
self . node . correct_childrens_parent_links ( self . idx + 1 ..new_len + 1 ) ;
@@ -1085,7 +1085,7 @@ impl<'a, K: 'a, V: 'a, NodeType> Handle<NodeRef<marker::Immut<'a>, K, V, NodeTyp
1085
1085
1086
1086
impl < ' a , K : ' a , V : ' a , NodeType > Handle < NodeRef < marker:: Mut < ' a > , K , V , NodeType > , marker:: KV > {
1087
1087
pub fn key_mut ( & mut self ) -> & mut K {
1088
- unsafe { self . node . key_area_mut_at ( self . idx ) . assume_init_mut ( ) }
1088
+ unsafe { self . node . key_area_mut ( self . idx ) . assume_init_mut ( ) }
1089
1089
}
1090
1090
1091
1091
pub fn into_val_mut ( self ) -> & ' a mut V {
@@ -1127,16 +1127,16 @@ impl<'a, K: 'a, V: 'a, NodeType> Handle<NodeRef<marker::Mut<'a>, K, V, NodeType>
1127
1127
let new_len = self . node . len ( ) - self . idx - 1 ;
1128
1128
new_node. len = new_len as u16 ;
1129
1129
unsafe {
1130
- let k = self . node . key_area_mut_at ( self . idx ) . assume_init_read ( ) ;
1131
- let v = self . node . val_area_mut_at ( self . idx ) . assume_init_read ( ) ;
1130
+ let k = self . node . key_area_mut ( self . idx ) . assume_init_read ( ) ;
1131
+ let v = self . node . val_area_mut ( self . idx ) . assume_init_read ( ) ;
1132
1132
1133
1133
ptr:: copy_nonoverlapping (
1134
- self . node . key_area_mut_at ( self . idx + 1 ..) . as_ptr ( ) ,
1134
+ self . node . key_area_mut ( self . idx + 1 ..) . as_ptr ( ) ,
1135
1135
new_node. keys . as_mut_ptr ( ) ,
1136
1136
new_len,
1137
1137
) ;
1138
1138
ptr:: copy_nonoverlapping (
1139
- self . node . val_area_mut_at ( self . idx + 1 ..) . as_ptr ( ) ,
1139
+ self . node . val_area_mut ( self . idx + 1 ..) . as_ptr ( ) ,
1140
1140
new_node. vals . as_mut_ptr ( ) ,
1141
1141
new_len,
1142
1142
) ;
@@ -1173,8 +1173,8 @@ impl<'a, K: 'a, V: 'a> Handle<NodeRef<marker::Mut<'a>, K, V, marker::Leaf>, mark
1173
1173
) -> ( ( K , V ) , Handle < NodeRef < marker:: Mut < ' a > , K , V , marker:: Leaf > , marker:: Edge > ) {
1174
1174
let old_len = self . node . len ( ) ;
1175
1175
unsafe {
1176
- let k = slice_remove ( self . node . key_area_mut_at ( ..old_len) , self . idx ) ;
1177
- let v = slice_remove ( self . node . val_area_mut_at ( ..old_len) , self . idx ) ;
1176
+ let k = slice_remove ( self . node . key_area_mut ( ..old_len) , self . idx ) ;
1177
+ let v = slice_remove ( self . node . val_area_mut ( ..old_len) , self . idx ) ;
1178
1178
* self . node . len_mut ( ) = ( old_len - 1 ) as u16 ;
1179
1179
( ( k, v) , self . left_edge ( ) )
1180
1180
}
@@ -1195,7 +1195,7 @@ impl<'a, K: 'a, V: 'a> Handle<NodeRef<marker::Mut<'a>, K, V, marker::Internal>,
1195
1195
let kv = self . split_leaf_data ( & mut new_node. data ) ;
1196
1196
let new_len = usize:: from ( new_node. data . len ) ;
1197
1197
ptr:: copy_nonoverlapping (
1198
- self . node . edge_area_mut_at ( self . idx + 1 ..) . as_ptr ( ) ,
1198
+ self . node . edge_area_mut ( self . idx + 1 ..) . as_ptr ( ) ,
1199
1199
new_node. edges . as_mut_ptr ( ) ,
1200
1200
new_len + 1 ,
1201
1201
) ;
@@ -1321,25 +1321,23 @@ impl<'a, K: 'a, V: 'a> BalancingContext<'a, K, V> {
1321
1321
unsafe {
1322
1322
* left_node. len_mut ( ) = new_left_len as u16 ;
1323
1323
1324
- let parent_key =
1325
- slice_remove ( parent_node. key_area_mut_at ( ..old_parent_len) , parent_idx) ;
1326
- left_node. key_area_mut_at ( old_left_len) . write ( parent_key) ;
1324
+ let parent_key = slice_remove ( parent_node. key_area_mut ( ..old_parent_len) , parent_idx) ;
1325
+ left_node. key_area_mut ( old_left_len) . write ( parent_key) ;
1327
1326
ptr:: copy_nonoverlapping (
1328
- right_node. key_area_mut_at ( ..) . as_ptr ( ) ,
1329
- left_node. key_area_mut_at ( old_left_len + 1 ..) . as_mut_ptr ( ) ,
1327
+ right_node. key_area_mut ( ..) . as_ptr ( ) ,
1328
+ left_node. key_area_mut ( old_left_len + 1 ..) . as_mut_ptr ( ) ,
1330
1329
right_len,
1331
1330
) ;
1332
1331
1333
- let parent_val =
1334
- slice_remove ( parent_node. val_area_mut_at ( ..old_parent_len) , parent_idx) ;
1335
- left_node. val_area_mut_at ( old_left_len) . write ( parent_val) ;
1332
+ let parent_val = slice_remove ( parent_node. val_area_mut ( ..old_parent_len) , parent_idx) ;
1333
+ left_node. val_area_mut ( old_left_len) . write ( parent_val) ;
1336
1334
ptr:: copy_nonoverlapping (
1337
- right_node. val_area_mut_at ( ..) . as_ptr ( ) ,
1338
- left_node. val_area_mut_at ( old_left_len + 1 ..) . as_mut_ptr ( ) ,
1335
+ right_node. val_area_mut ( ..) . as_ptr ( ) ,
1336
+ left_node. val_area_mut ( old_left_len + 1 ..) . as_mut_ptr ( ) ,
1339
1337
right_len,
1340
1338
) ;
1341
1339
1342
- slice_remove ( & mut parent_node. edge_area_mut_at ( ..old_parent_len + 1 ) , parent_idx + 1 ) ;
1340
+ slice_remove ( & mut parent_node. edge_area_mut ( ..old_parent_len + 1 ) , parent_idx + 1 ) ;
1343
1341
parent_node. correct_childrens_parent_links ( parent_idx + 1 ..old_parent_len) ;
1344
1342
* parent_node. len_mut ( ) -= 1 ;
1345
1343
@@ -1349,8 +1347,8 @@ impl<'a, K: 'a, V: 'a> BalancingContext<'a, K, V> {
1349
1347
let mut left_node = left_node. reborrow_mut ( ) . cast_to_internal_unchecked ( ) ;
1350
1348
let mut right_node = right_node. cast_to_internal_unchecked ( ) ;
1351
1349
ptr:: copy_nonoverlapping (
1352
- right_node. edge_area_mut_at ( ..) . as_ptr ( ) ,
1353
- left_node. edge_area_mut_at ( old_left_len + 1 ..) . as_mut_ptr ( ) ,
1350
+ right_node. edge_area_mut ( ..) . as_ptr ( ) ,
1351
+ left_node. edge_area_mut ( old_left_len + 1 ..) . as_mut_ptr ( ) ,
1354
1352
right_len + 1 ,
1355
1353
) ;
1356
1354
@@ -1458,7 +1456,7 @@ impl<'a, K: 'a, V: 'a> BalancingContext<'a, K, V> {
1458
1456
match ( left_node. reborrow_mut ( ) . force ( ) , right_node. reborrow_mut ( ) . force ( ) ) {
1459
1457
( ForceResult :: Internal ( left) , ForceResult :: Internal ( mut right) ) => {
1460
1458
// Make room for stolen edges.
1461
- let right_edges = right. edge_area_mut_at ( ..) . as_mut_ptr ( ) ;
1459
+ let right_edges = right. edge_area_mut ( ..) . as_mut_ptr ( ) ;
1462
1460
ptr:: copy ( right_edges, right_edges. add ( count) , old_right_len + 1 ) ;
1463
1461
right. correct_childrens_parent_links ( count..new_right_len + 1 ) ;
1464
1462
@@ -1518,7 +1516,7 @@ impl<'a, K: 'a, V: 'a> BalancingContext<'a, K, V> {
1518
1516
move_edges ( right. reborrow_mut ( ) , 0 , left, old_left_len + 1 , count) ;
1519
1517
1520
1518
// Fill gap where stolen edges used to be.
1521
- let right_edges = right. edge_area_mut_at ( ..) . as_mut_ptr ( ) ;
1519
+ let right_edges = right. edge_area_mut ( ..) . as_mut_ptr ( ) ;
1522
1520
ptr:: copy ( right_edges. add ( count) , right_edges, new_right_len + 1 ) ;
1523
1521
right. correct_childrens_parent_links ( 0 ..=new_right_len) ;
1524
1522
}
@@ -1551,8 +1549,8 @@ unsafe fn move_edges<'a, K: 'a, V: 'a>(
1551
1549
count : usize ,
1552
1550
) {
1553
1551
unsafe {
1554
- let source_ptr = source. edge_area_mut_at ( ..) . as_ptr ( ) ;
1555
- let dest_ptr = dest. edge_area_mut_at ( dest_offset..) . as_mut_ptr ( ) ;
1552
+ let source_ptr = source. edge_area_mut ( ..) . as_ptr ( ) ;
1553
+ let dest_ptr = dest. edge_area_mut ( dest_offset..) . as_mut_ptr ( ) ;
1556
1554
ptr:: copy_nonoverlapping ( source_ptr. add ( source_offset) , dest_ptr, count) ;
1557
1555
dest. correct_childrens_parent_links ( dest_offset..dest_offset + count) ;
1558
1556
}
0 commit comments