(self, iterable: Iterable[Self | TM])
| 86 | return asdict(self).items() |
| 87 | |
| 88 | def join(self, iterable: Iterable[Self | TM]) -> TM: |
| 89 | return self.get_message_class()(self).join(iterable) |
| 90 | |
| 91 | def copy(self) -> Self: |
| 92 | return deepcopy(self) |
nothing calls this directly
no test coverage detected