Extend array by appending elements from the iterable.
(self, other: Iterable[T], /)
| 992 | return 0 |
| 993 | |
| 994 | def extend(self, other: Iterable[T], /) -> None: |
| 995 | """Extend array by appending elements from the iterable.""" |
| 996 | |
| 997 | def __reversed__(self) -> Iterator[T]: |
| 998 | """Return a reverse iterator over the :js:class:`Array`.""" |
no outgoing calls