Return True if the array is non-empty.
(self)
| 256 | return _ffi_api.RecursiveHash(self) |
| 257 | |
| 258 | def __bool__(self) -> bool: |
| 259 | """Return True if the array is non-empty.""" |
| 260 | return len(self) > 0 |
| 261 | |
| 262 | def __add__(self, other: Iterable[T]) -> Array[T]: |
| 263 | """Concatenate two arrays.""" |
nothing calls this directly
no outgoing calls
no test coverage detected