minuet.utils.typing#

Module Attributes

ScalarOrTuple

The generic type with a type parameter T standing for the value is either a scalar value or a tuple consists of scalar values of type T

ScalarOrIterable

The generic type with a type parameter T standing for the value is either a scalar value or an iterable that generates scalar values of type T

ScalarOrIterable#

The generic type with a type parameter T standing for the value is either a scalar value or an iterable that generates scalar values of type T

alias of Union[T, Iterable[T]]

ScalarOrTuple#

The generic type with a type parameter T standing for the value is either a scalar value or a tuple consists of scalar values of type T

alias of Union[T, Tuple[T, …]]