Provide access to the first element in the array. The user must check that the array isn't empty, prior to calling this function.
a reference to the first element.
Complexity: O(1).
auto a = Array!int(1, 2, 3); assert(a.front == 1); a.front = 0; assert(a.front == 0);
See Implementation
Provide access to the first element in the array. The user must check that the array isn't empty, prior to calling this function.