(self: anon_map, key: _AM_KEY, /)
| 98 | @cython.cfunc |
| 99 | @cython.inline |
| 100 | def _add_missing(self: anon_map, key: _AM_KEY, /) -> int: |
| 101 | val: int = self._index |
| 102 | self._index += 1 |
| 103 | self_dict: dict = self # type: ignore[type-arg] |
| 104 | self_dict[key] = val |
| 105 | return val |
| 106 | |
| 107 | def get_anon(self: anon_map, obj: object, /) -> Tuple[int, bool]: |
| 108 | self_dict: dict = self # type: ignore[type-arg] |
no outgoing calls
no test coverage detected