(key: K, val: V)
| 57 | } |
| 58 | |
| 59 | pub fn new_entry(key: K, val: V) -> NonNull<Self> { |
| 60 | Self::new_leaf(key, Some(val), None) |
| 61 | } |
| 62 | |
| 63 | pub fn release(node: NonNull<Node<K, V>>) { |
| 64 | unsafe { |
nothing calls this directly
no outgoing calls
no test coverage detected