(
self, *dicts: Optional[Mapping[_KT, _VT]]
)
| 148 | |
| 149 | @cython.annotation_typing(False) # avoid cython crash from generic return |
| 150 | def union( |
| 151 | self, *dicts: Optional[Mapping[_KT, _VT]] |
| 152 | ) -> immutabledict[_KT, _VT]: |
| 153 | return self._union_other(dicts) # type: ignore[no-any-return] |
| 154 | |
| 155 | @cython.annotation_typing(False) # avoid cython crash from generic return |
| 156 | def merge_with( |
nothing calls this directly
no test coverage detected