This is a slightly simpler way to create a DataBuffer instance that uses type deduction.
the initial buffer to use
an instance of DataBuffer
ubyte[10] tmpbuf = void; auto sb = dataBuffer(tmpbuf); scope(exit) sp.free();
See Implementation
This is a slightly simpler way to create a DataBuffer instance that uses type deduction.