Crate extsort_lily[][src]

An efficient external sort implementation.

You start by implementing the Sortable for your data, and provide your data via an iterable. Then you create an ExtSorter to sort data.

An example is provided in the examples/ directory.

Structs

ExtSortedIterator

The iterator type for producing results sorted by merge sort.

ExtSorter

Sort the data

Traits

Sortable

Implement this trait for data to be sorted