Concatenate two arrays.
(self, other: Iterable[T])
| 260 | return len(self) > 0 |
| 261 | |
| 262 | def __add__(self, other: Iterable[T]) -> Array[T]: |
| 263 | """Concatenate two arrays.""" |
| 264 | return type(self)(itertools.chain(self, other)) |
| 265 | |
| 266 | def __radd__(self, other: Iterable[T]) -> Array[T]: |
| 267 | """Concatenate two arrays.""" |
nothing calls this directly
no outgoing calls
no test coverage detected