nybbles

Function pack_to_unchecked

Source
pub unsafe fn pack_to_unchecked(nibbles: &[u8], out: &mut [MaybeUninit<u8>])
Expand description

Packs the nibbles into the given slice without checking its length.

ยงSafety

out must be valid for at least (self.len() + 1) / 2 bytes.