Struct extsort_lily::ExtSorter[][src]

pub struct ExtSorter<T> { /* fields omitted */ }

Sort the data

Implementations

impl<T> ExtSorter<T> where
    T: Sortable<BufWriter<File>, BufReader<File>>,
    T::Error: From<Error>, 
[src]

pub fn new(buffer_n_items: usize) -> Result<Self>[src]

Create an ExtSorter to sort your data.

It will buffer buffer_n_items items in memory and sort them, and then write them serialized into temporary files.

pub fn new_in<P: AsRef<Path>>(buffer_n_items: usize, tmp_dir: P) -> Result<Self>[src]

Same as new but provide a directory to store temporary files instead of system default.

pub fn sort<I>(
    &self,
    unsorted: I
) -> Result<ExtSortedIterator<T, BufReader<File>, BufWriter<File>>, T::Error> where
    I: Iterator<Item = T>, 
[src]

Sort the data.

It returns an iterator to produce sorted results. The sort is unstable.

Auto Trait Implementations

impl<T> RefUnwindSafe for ExtSorter<T> where
    T: RefUnwindSafe

impl<T> Send for ExtSorter<T> where
    T: Send

impl<T> Sync for ExtSorter<T> where
    T: Sync

impl<T> Unpin for ExtSorter<T> where
    T: Unpin

impl<T> UnwindSafe for ExtSorter<T> where
    T: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.