append
fn
void append(T, Endian endianness = Endian.bigEndian, R)(R range, const T value) if (canSwapEndianness!T && isOutputRange!(R, ubyte))Takes an integral value, converts it to the given endianness, and appends it to the given range of ubytes (using put) as a sequence of T.sizeof ubytes starting at index. hasSlicing!R must be true.
Parameters
T | The integral type to convert the first T.sizeof bytes to. |
endianness | The endianness to write the bytes in. |
range | The range to _append to. |
value | The value to _append. |