- class neuroglancer.json_wrappers.List[T]
List of values of type
T
.Public members¶
- __getitem__(key: int) -> T
Returns the element at the specified index.
- __delitem__(key: int)
Removes the element at the specified index.
- __setitem__(key: int, value: T)
- __setitem__(key: slice, value: Iterable[T])
Assigns to the specified index or slice.
- to_json()
Returns the representation as a JSON array.
- __repr__()
Return repr(self).