Writes a value of type T or array of type T[].
auto buffer = new Typed!short(4); buffer.put(1); buffer.put(2, 3); buffer.put([4, 5]); assert(buffer.data == [1, 2, 3, 4, 5]);
See Implementation
Writes a value of type T or array of type T[].