(self, instance: _ET)
| 182 | return self.__class__(self, instance_cls) |
| 183 | |
| 184 | def _for_instance(self, instance: _ET) -> _Dispatch[_ET]: |
| 185 | instance_cls = instance.__class__ |
| 186 | return self._for_class(instance_cls) |
| 187 | |
| 188 | def _join(self, other: _DispatchCommon[_ET]) -> _JoinedDispatcher[_ET]: |
| 189 | """Create a 'join' of this :class:`._Dispatch` and another. |
no test coverage detected