Returns the number of key-value pairs in this symbol table.
(&self)
| 63 | impl<T> TrieST<T> { |
| 64 | /// Returns the number of key-value pairs in this symbol table. |
| 65 | pub fn len(&self) -> usize { |
| 66 | self.n |
| 67 | } |
| 68 | |
| 69 | /// Is this symbol table empty |
| 70 | pub fn is_empty(&self) -> bool { |
no outgoing calls
no test coverage detected