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.
pub unsafe fn pack_to_unchecked(nibbles: &[u8], out: &mut [MaybeUninit<u8>])
Packs the nibbles into the given slice without checking its length.
out
must be valid for at least (self.len() + 1) / 2
bytes.