(&self, string: &Phrase)
| 272 | |
| 273 | impl SearchTokenIndexMap { |
| 274 | fn get(&self, string: &Phrase) -> Option<&BTreeSet<SearchEntry>> { |
| 275 | self.tokens.get(string) |
| 276 | } |
| 277 | |
| 278 | fn prefix_matches(&self, token: &Phrase) -> HashSet<SearchEntry> { |
| 279 | let iter = self |
no outgoing calls
no test coverage detected