Gets the data as an array of the template's type. The data can also be obtained in the specified format.
auto buffer = new Typed!char("hello"); assert(buffer.data == "hello"); assert(buffer.data!ubyte == [104, 101, 108, 108, 111]);
See Implementation
Gets the data as an array of the template's type. The data can also be obtained in the specified format.