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};