pub unsafe extern "C" fn bit_buffer_append_right(
buf: *mut BitBuffer,
other: *const BitBuffer,
start_index: usize,
)Expand description
Append a BitBuffer’s instance contents to this one, starting from start_index.
The destination capacity must be no less than the source data size counting from start_index.
§Arguments
buf(direction in, out) - pointer to a BitBuffer instance to be appended toother(direction in) - pointer to a BitBuffer instance to be appendedstart_index(direction in) - index to begin copying source data from