[][src]Module out::iter

Functions for use with iterators.

Functions

sort

Get the n largest items from an iterator.

sort_by

Get the n largest items from an iterator with a comparator function.

sort_by_key

Get the n largest items from an iterator with a key extraction function.

sort_unstable

Get the n largest items from an iterator.

sort_unstable_by

Get the n largest items from an iterator with a comparator function.

sort_unstable_by_key

Get the n largest items from an iterator with a key extraction function.