Append element to the start.
Array!int arr; scope(exit) arr.free(); arr.insertFront(1); arr.insertBack(2); arr.insertFront(0); assert(arr.data == [0,1,2]);
See Implementation
Append element to the start.