Gives the length of the array.
FixedSizeArray!(int,32) fsa; assert(fsa.empty); assert(fsa.length == 0); fsa.insertBack(1337); fsa.insertBack(1338); assert(fsa.length == 2); assert(!fsa.empty);
See Implementation
Gives the length of the array.