Advance to the next element in the array. The user must check that the array isn't empty, prior to calling this function.
This must be used in order to iterate through a const or immutable array For a mutable array this is equivalent to calling popFront.
an array that starts with the next element in the original array.
Complexity: O(1).
auto ia = immutable Array!int([1, 2, 3]); assert(ia.tail.front == 2);
See Implementation
Advance to the next element in the array. The user must check that the array isn't empty, prior to calling this function.
This must be used in order to iterate through a const or immutable array For a mutable array this is equivalent to calling popFront.