typing

numcodecs_shuffle.typing

Commonly used type variables.

S module-attribute

S = TypeVar('S', bound=tuple[int, ...], covariant=True)

Any array shape (covariant).

T module-attribute

T = TypeVar('T', bound=number, covariant=True)

Any numpy number data type (covariant).