Return the number of times x appears in the list.
(self, /, x: T)
| 1019 | raise NotImplementedError |
| 1020 | |
| 1021 | def count(self, /, x: T) -> int: |
| 1022 | """Return the number of times x appears in the list.""" |
| 1023 | raise NotImplementedError |
| 1024 | |
| 1025 | def reverse(self) -> None: |
| 1026 | """Reverse the array in place.""" |
no outgoing calls