(self, value)
| 46 | yield self.id_to_elem[i] |
| 47 | |
| 48 | def __contains__(self, value): |
| 49 | # type: (object) -> bool |
| 50 | return value in self.elem_to_id |
| 51 | |
| 52 | def __len__(self): |
| 53 | # type: () -> int |
nothing calls this directly
no outgoing calls
no test coverage detected