Append object to the end of the list.
(self, /, object: T)
| 1009 | pass |
| 1010 | |
| 1011 | def append(self, /, object: T) -> None: |
| 1012 | """Append object to the end of the list.""" |
| 1013 | |
| 1014 | def index(self, /, value: T, start: int = 0, stop: int = sys.maxsize) -> int: |
| 1015 | """Return first ``index`` at which ``value`` appears in the ``Array``. |
no outgoing calls