The first element.
Precondition: !empty.
auto v = Array!int([5]); assert(v.front == 5); v.length = 2; v[1] = 15; assert(v.front == 5);
See Implementation