Check if the array contains a value.
(self, value: object)
| 232 | yield self[i] |
| 233 | |
| 234 | def __contains__(self, value: object) -> bool: |
| 235 | """Check if the array contains a value.""" |
| 236 | return _sequence_contains(self, value, _ffi_api.ArrayContains) |
| 237 | |
| 238 | def __eq__(self, other: object) -> bool: |
| 239 | """Structural equality.""" |
nothing calls this directly
no test coverage detected