fluent.databuffer

Undocumented in source.

Members

Functions

dataBuffer
auto dataBuffer(T[] tmpbuf)

This is a slightly simpler way to create a DataBuffer instance that uses type deduction.

Structs

DataBuffer
struct DataBuffer(T, alias realloc = core.stdc.stdlib.realloc)

encapsulates using a local array as a temporary buffer. It is initialized with the local array that should be large enough for most uses. If the need exceeds the size, DataBuffer will resize it using malloc() and friends.

Meta