Return the number of elements in the array.
(self)
| 222 | return result |
| 223 | |
| 224 | def __len__(self) -> int: |
| 225 | """Return the number of elements in the array.""" |
| 226 | return _ffi_api.ArraySize(self) |
| 227 | |
| 228 | def __iter__(self) -> Iterator[T]: |
| 229 | """Iterate over the elements in the array.""" |
nothing calls this directly
no outgoing calls
no test coverage detected