Registry / utility / radsort

radsort

JSON →
library0.1.1rscratesunverified

Radix sort implementation for sorting by scalar keys (integers, floats, chars, bools).

# Cargo.toml [dependencies] radsort = "0.1.1"
INSTALL
IMPORT
SIG · RADSORT
R
radsort
utilityrustv0.1.1
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.

sort
use radsort::sort;

Sort a vector of integers using radix sort.

use radsort::sort; fn main() { let mut data = vec![3, 1, 4, 1, 5, 9]; sort(&mut data); println!("Sorted: {:?}", data); }
Debug
Known issues
breakingOnly works on scalar types; not for custom structs without scalar keys.
fix
Ensure the type implements the required scalar trait.
affects: >=0.0.0
Upgrade
Version history
0.1.1latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

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