(self, universal_set: set[T], get_matches: GetMatches[T])
| 46 | self.type = type |
| 47 | |
| 48 | def search(self, universal_set: set[T], get_matches: GetMatches[T]) -> set[T]: |
| 49 | return self(universal_set, get_matches) |
| 50 | |
| 51 | def __call__(self, candidates: set[T], get_matches: GetMatches[T]) -> set[T]: |
| 52 | return set() |
no outgoing calls
no test coverage detected