Function sorted
pub fn sorted<I>(iterable: I) -> IntoIter<<I as IntoIterator>::Item> ⓘ
Available on crate feature
dep_itertools
only.Expand description
Sort all iterator elements into a new iterator in ascending order.
IntoIterator
enabled version of Itertools::sorted
.
use itertools::sorted;
use itertools::assert_equal;
assert_equal(sorted("rust".chars()), "rstu".chars());