(key: K, val: Option<V>, parent: Option<NonNull<Node<K, V>>>)
| 49 | } |
| 50 | |
| 51 | pub fn new_leaf(key: K, val: Option<V>, parent: Option<NonNull<Node<K, V>>>) -> NonNull<Self> { |
| 52 | Self::new(key, val, None, None, parent) |
| 53 | } |
| 54 | |
| 55 | pub fn new_key(key: K) -> NonNull<Self> { |
| 56 | Self::new_leaf(key, None, None) |
nothing calls this directly
no outgoing calls
no test coverage detected