kd.typing.Sequence#
- class kauldron.typing.Sequence[source]
Bases:
collections.abc.Reversible,collections.abc.CollectionAll the operations on a read-only sequence.
Concrete subclasses must override __new__ or __init__, __getitem__, and __len__.
- count(
- value,
- index(
- value[,
- start[,
- stop,]]
Raises ValueError if the value is not present.
Supporting start and stop arguments is optional, but recommended.