buf += type
- operator buf +=( buf left, buf right )
- operator buf +=( buf left, ubyte right )
- operator buf +=( buf left, uint right )
- operator buf +=( buf left, ushort right )
- operator buf +=( buf left, ulong right )
Appending types to the buffer. Append buf to buf => buf += buf.
operator buf += (
buf left,
buf right
)
buf left,
buf right
)
Return value
The result buffer.
buf += ubyte
Append ubyte to buf => buf += ubyte.
operator buf += (
buf left,
ubyte right
)
buf left,
ubyte right
)
buf += uint
Append uint to buf => buf += uint.
operator buf += (
buf left,
uint right
)
buf left,
uint right
)
buf += ushort
Append ushort to buf => buf += ushort.
operator buf += (
buf left,
ushort right
)
buf left,
ushort right
)
buf += ulong
Append ulong to buf => buf += ulong.
operator buf += (
buf left,
ulong right
)
buf left,
ulong right
)
Related links | Source |