pub fn unpack_trits_into(packed: &[u8], out: &mut [i8]) -> usize
Unpack out.len() trits from packed bytes into the caller’s buffer (zero-heap). Returns the number written (min(out.len(), packed capacity)).
out.len()
min(out.len(), packed capacity)