()
| 37 | } |
| 38 | |
| 39 | pub fn new_internal() -> Self { |
| 40 | Node { |
| 41 | keys: Vec::new(), |
| 42 | values: Vec::new(), |
| 43 | children: Vec::new(), |
| 44 | max_keys: MAX_KEYS, |
| 45 | node_type: NodeType::Internal, |
| 46 | } |
| 47 | } |
| 48 | |
| 49 | pub fn clone(&self) -> Self { |
| 50 | Node { |
nothing calls this directly
no outgoing calls
no test coverage detected