| 56 | } |
| 57 | |
| 58 | struct Node<T> { |
| 59 | val: Option<T>, |
| 60 | next: Vec<Option<NonNull<Node<T>>>>, |
| 61 | } |
| 62 | |
| 63 | impl<T> TrieST<T> { |
| 64 | /// Returns the number of key-value pairs in this symbol table. |
nothing calls this directly
no outgoing calls
no test coverage detected