Accept a borrowed key-value pair at the end (from right sibling)
(&mut self, key: K, value: V)
| 482 | |
| 483 | /// Accept a borrowed key-value pair at the end (from right sibling) |
| 484 | pub fn accept_from_right(&mut self, key: K, value: V) { |
| 485 | self.keys.push(key); |
| 486 | self.values.push(value); |
| 487 | } |
| 488 | |
| 489 | /// Merge all content from another leaf into this one, returning the other's next pointer |
| 490 | pub fn merge_from(&mut self, other: &mut LeafNode<K, V>) -> NodeId { |
no outgoing calls
no test coverage detected