zan_sort/lib.rs
1//! # zan-sort
2//!
3//! A generic, hardware-optimized hybrid sorting library for Rust.
4//! By abandoning traditional comparative algorithms in favor of O(N) arithmetic
5//! routing and an `Ordex`-inspired parallel disjoint memory architecture,
6//! it pushes modern DRAM bandwidth to its physical limits.
7
8#![doc = include_str!("../README.md")]
9
10pub mod core;
11pub mod prelude;