extsort-iter 0.3.1

external sorting for all types for all iterators
Documentation
1
2
3
4
5
use std::io::Read;

use crate::{merge::LoserTree, run::file_run::ExternalRun};

pub type ResultIterator<T, O> = LoserTree<T, ExternalRun<T, Box<dyn Read + Send>>, O>;