Append single element c to the end.
Array!int arr; scope(exit) arr.free(); foreach(i; 0..16) { arr.insertBack(i); } assert(arr.length == 16); arr.insertBack(16); assert(arr.length == 17); assert(arr[16] == 16);
See Implementation
Append single element c to the end.