p3-util 0.6.1

A collection of utility functions and tools for low-level operations, such as bit manipulation and array transformations.
Documentation
1
2
3
4
5
6
7
8
9
//! Matrix transpose operations.
//!
//! This module provides high-performance transpose implementations

mod rectangular;
mod square;

pub use rectangular::transpose;
pub(crate) use square::transpose_in_place_square;