The search functionality needs JavaScript enabled
inout ref inout(T) front() @property;
The first element.
!empty.
!empty
auto v = Array!int([5]); assert(v.front == 5); v.length = 2; v[1] = 15; assert(v.front == 5);