Construct an Array from a Python sequence.
(self, input_list: Iterable[T])
| 206 | return _ffi_api.DeepCopy(self) |
| 207 | |
| 208 | def __init__(self, input_list: Iterable[T]) -> None: |
| 209 | """Construct an Array from a Python sequence.""" |
| 210 | self.__init_handle_by_constructor__(_ffi_api.Array, *input_list) |
| 211 | |
| 212 | @overload |
| 213 | def __getitem__(self, idx: SupportsIndex, /) -> T: ... |
nothing calls this directly
no outgoing calls
no test coverage detected