(
self, *dicts: Optional[Mapping[_KT, _VT]]
)
| 154 | |
| 155 | @cython.annotation_typing(False) # avoid cython crash from generic return |
| 156 | def merge_with( |
| 157 | self, *dicts: Optional[Mapping[_KT, _VT]] |
| 158 | ) -> immutabledict[_KT, _VT]: |
| 159 | # this is an alias of union |
| 160 | return self._union_other(dicts) # type: ignore[no-any-return] |
| 161 | |
| 162 | @cython.cfunc |
| 163 | @cython.inline |
no test coverage detected