Is this symbol table empty
(&self)
| 68 | |
| 69 | /// Is this symbol table empty |
| 70 | pub fn is_empty(&self) -> bool { |
| 71 | self.n == 0 |
| 72 | } |
| 73 | |
| 74 | /// Does this symbol table contain the given key? |
| 75 | pub fn contains(&self, key: &str) -> bool { |
nothing calls this directly
no outgoing calls
no test coverage detected