1 unstable release
Uses new Rust 2024
| 0.1.12 | Jul 22, 2025 |
|---|---|
| 0.1.11 |
|
#1673 in Rust patterns
16KB
202 lines
🌀 index_permute
A minimal, in-place, and non-cloning array permutation library for Rust.
This crate allows you to reorder a slice in place by an index array, even when the element type is not Clone or Copy. It ensures safety via a wrapper type PermuteIndex that checks index validity ahead of time.
✨ Features
- ✅ In-place permutation of non-
Copy, non-Clonedata. - ✅ Memory-safe: no element dropped or cloned during permutation.
- ✅ Index validation: ensures the index is a true permutation (
0..N). - ✅ Safe, ergonomic API.
- ✅
parallelfeature is defined, but it has limited speedup due to it's memory-bound nature. On benchmarks, it shows a 1.3x speedup on a 10 million element array.
Example
use index_permute::PermuteIndex;
let index = PermuteIndex::try_new(&[2, 0, 1]).unwrap();
let mut data = vec![10, 20, 30];
index_permute::order_by_index_inplace(&mut data, index);
assert_eq!(data, vec![30, 10, 20]);
📦 Installation
Add this to your Cargo.toml:
[dependencies]
index_permute = 0.1
Dependencies
~190–630KB
~15K SLoC