pub fn unpack_transposed<T: Packable>(
input: &[T],
width: usize,
output: &mut [T],
) -> Result<()>Expand description
Unpacks into the transposed layout. The inverse of pack_transposed.
ยงErrors
If the input is not packed_len long, if the output is not VALUES long, or if width
exceeds the width of the type.