☰
Mutable_Array
Mutable_Array
Functions
is this Sequence known to be array backed? If so, this means that operations
like index[] are fast.
like index[] are fast.
count the number of elements in this Sequence.
Since we know the exact length, this is redefined to achive O(1) performance instead
of O(n) for counting the elements.
Since we know the exact length, this is redefined to achive O(1) performance instead
of O(n) for counting the elements.
the indices of the array
NYI: Remove Sequence parent. Since Sequence is supposed to be immutable,
we should maybe not pretend to be a Sequence.