This function inserts an S element at the back if there is space. Otherwise the behaviour is undefined.
FixedSizeArray!(int,32) fsa; fsa.insertBack(1337); assert(fsa.length == 1); assert(fsa[0] == 1337); fsa.insertBack(99, 5); foreach(it; fsa[1 .. fsa.length]) { assert(it == 99); }
See Implementation
This function inserts an S element at the back if there is space. Otherwise the behaviour is undefined.