Skip to main content

unpack_transposed

Function unpack_transposed 

Source
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.