(self, key: str)
| 178 | self.matcher = matcher |
| 179 | |
| 180 | def __getitem__(self, key: str) -> bool: |
| 181 | return self.matcher(key[len(IDENT_PREFIX) :]) |
| 182 | |
| 183 | def __iter__(self) -> Iterator[str]: |
| 184 | raise NotImplementedError() |
nothing calls this directly
no outgoing calls
no test coverage detected