external_sort 0.1.2

Provides the ability to perform external sorts on structs, which allows for rapid sorting of large data streams.
Documentation
1
2
3
4
5
6
7
#![warn(missing_docs)]

//! Provides the ability to perform external sorts on structs

mod external_sort;

pub use crate::external_sort::{ExtSortedIterator, ExternalSorter, ExternallySortable};