external_sort/
lib.rs

1#![warn(missing_docs)]
2
3//! Provides the ability to perform external sorts on structs
4
5mod external_sort;
6
7pub use crate::external_sort::{ExtSortedIterator, ExternalSorter, ExternallySortable};