Buffer.opOpAssign

Implements buf ~= someT (appending) by wrapping put.

struct Buffer(T, Flag!"dynamic" dynamic = No.dynamic, size_t originalSize = 128)
pure nothrow
void
opOpAssign
(
string op : "~"
)
(
const T more
)

Parameters

op

Operation type, here specialised to "~".

more T

Item to add.

Meta