const fn combine(pieces: &[&[u8]], out: &mut [u8])
Combines all bytes pieces into a single byte array.
out should be a buffer at the correct size of combined_len(pieces), else this will panic.
out
combined_len(pieces)