A gutted, NoGC version of std.array.appender.
Works on a fixed-size buffer.
Construct an appender that will work with given buffer.
Clears the managed array. This allows the elements of the array to be reused for appending.
Clear is not available for const/immutable data.
Returns the capacity of the array (the maximum number of elements the managed array can accommodate before triggering a reallocation). If any appending will reallocate, capacity returns 0.
Returns the managed array.
See Implementation
A gutted, NoGC version of std.array.appender.
Works on a fixed-size buffer.