Registry / utility / transpose

transpose

JSON →
library0.2.3rscratesunverified

Utility for transposing multi-dimensional data in Rust.

# Cargo.toml [dependencies] transpose = "0.2.3"
INSTALL
IMPORT
SIG · TRANSPOSE
T
transpose
utilityrustv0.2.3
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

transpose
use transpose::transpose;

Transpose a 3x2 matrix.

use transpose::transpose; fn main() { let input = vec![1, 2, 3, 4, 5, 6]; let mut output = vec![0; 6]; transpose(&input, &mut output, 3, 2); println!("{:?}", output); }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
0.2.3latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
6 hits · last 30 days
node
6
Resources
transpose — cargo add transpose · libregistry