Use an index to access the array.
FixedSizeArray!(int,32) fsa; fsa.insertBack(1337); fsa.insertBack(1338); assert(fsa.length == 2); assert(fsa[0] == 1337); assert(fsa[1] == 1338);
See Implementation
Use an index to access the array.