(self, *iterables: Iterable[_T])
| 306 | self.data: Iterator[_T] = chain.from_iterable(args) |
| 307 | |
| 308 | def extend(self, *iterables: Iterable[_T]) -> None: |
| 309 | self.data = chain(self.data, chain.from_iterable(iterables)) |
| 310 | |
| 311 | def __iter__(self) -> Iterator[_T]: |
| 312 | return self |
no outgoing calls
no test coverage detected