Expand description
Free functions for fun programming.
This crate can be used through fera crate.
Functionsยง
- first
- Returns the first item of an iterator.
- position_
max_ by_ key - Returns the last position of the maximum element of a non empty iterator or
Noneif iterator is empty. - position_
min_ by_ key - Returns the first position of the minimum element of a non empty iterator or
Noneif iterator is empty. - position_
of - Returns the first position of an item of an iterator or
Noneif the iterator does not produces the item. - set
- Creates a
HashSetfrom a iterator. - vec
- Creates a
Vectorfrom a iterator.