Returns all keys in the symbol table
(&self)
| 104 | |
| 105 | /// Returns all keys in the symbol table |
| 106 | pub fn keys(&self) -> Queue<String> { |
| 107 | self.keys_with_prefix("") |
| 108 | } |
| 109 | |
| 110 | /// Returns all of the keys in the set that start with *prefix* |
| 111 | pub fn keys_with_prefix(&self, prefix: &str) -> Queue<String> { |
nothing calls this directly
no test coverage detected