class graphicle.base.ArrayBase(abc.ABC, collections.abc.Sequence, numpy.lib.mixins.NDArrayOperatorsMixin)[source]

Public members

abstract ArrayBase(data: ndarray[Any, dtype[Any]] | None = None)[source]

Initialize self. See help(type(self)) for accurate signature.

abstract __iter__() Iterator[Any][source]

Iterator exposing contained data as Python native.

abstract __bool__() bool[source]

Truthy returns False if no elements, True otherwise.

abstract __array__() ndarray[Any, dtype[Any]][source]

Numpy array representation of the data.

abstract property dtype : ndarray[Any, dtype[Any]][source]

Numpy array representation of the data.

abstract __eq__() MaskBase[source]

Equality comparison.

abstract __ne__() MaskBase[source]

Non equality comparison.

abstract property data : ndarray[Any, dtype[Any]][source]
abstract __getitem__(index)[source]
index(value, ...) integer -- return first index of value.[source]

Raises ValueError if the value is not present.

count(value) integer -- return number of occurrences of value[source]
classmethod __subclasshook__(C)[source]

Abstract classes can override this to customize issubclass().

ArrayBase = <bound method GenericAlias of <class 'collections.abc.Iterable'>>[source]
__lt__(other)[source]

Return self<value.

__le__(other)[source]

Return self<=value.

__gt__(other)[source]

Return self>value.

__ge__(other)[source]

Return self>=value.

__or__(other)[source]

Return self|value.

__ror__(other)[source]

Return value|self.


Last update: Jun 27, 2025