(key: K)
| 53 | } |
| 54 | |
| 55 | pub fn new_key(key: K) -> NonNull<Self> { |
| 56 | Self::new_leaf(key, None, None) |
| 57 | } |
| 58 | |
| 59 | pub fn new_entry(key: K, val: V) -> NonNull<Self> { |
| 60 | Self::new_leaf(key, Some(val), None) |
nothing calls this directly
no outgoing calls
no test coverage detected