Returned by rows.into_typed::<(...)>()
iter_next_chunk
)N
values. Read moreiter_advance_by
)n
elements. Read moren
th element of the iterator. Read moreiter_intersperse
)separator
between adjacent
items of the original iterator. Read moreiter_intersperse
)separator
between adjacent items of the original iterator. Read moren
elements. Read moren
elements, or fewer
if the underlying iterator ends sooner. Read moreiter_map_windows
)f
for each contiguous window of size N
over
self
and returns an iterator over the outputs of f
. Like slice::windows()
,
the windows during mapping overlap as well. Read moreiterator_try_collect
)iter_collect_into
)iter_is_partitioned
)true
precede all those that return false
. Read moreiterator_try_reduce
)try_find
)iter_array_chunks
)N
elements of the iterator at a time. Read moreiter_order_by
)Iterator
with those
of another with respect to the specified comparison function. Read morePartialOrd
elements of
this Iterator
with those of another. The comparison works like short-circuit
evaluation, returning a result without comparing the remaining elements.
As soon as an order can be determined, the evaluation stops and a result is returned. Read moreiter_order_by
)Iterator
with those
of another with respect to the specified comparison function. Read moreiter_order_by
)Iterator
are lexicographically
less than those of another. Read moreIterator
are lexicographically
less or equal to those of another. Read moreIterator
are lexicographically
greater than those of another. Read moreIterator
are lexicographically
greater than or equal to those of another. Read moreself
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreself
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moren
elements in the base iterator
for each iteration. Read more.map_ok()
.Result::Ok
value. Result::Err
values are
unchanged. Read moreResult::Ok
value with the provided closure. Result::Err
values are
unchanged. Read moreResult::Ok
value with the provided closure. Result::Err
values are unchanged. Read moreResult::Ok
value into
a series of Result::Ok
values. Result::Err
values are unchanged. Read moreResult
values instead. Read moreself
and J
. Read moreself
. Read moreaccept
returns true
. Read moreClone
-able iterator
to only pick off elements while the predicate accept
returns true
. Read moretrue
, including the element for which the predicate
first returned false
. Read moreOption<A>
iterator elements
and produces A
. Stops on the first None
encountered. Read morek
-length combinations of
the elements from an iterator. Read morek
-length combinations of
the elements from an iterator, with replacement. Read moremin
by filling missing elements using a closure f
. Read morePosition
to
ease special-case handling of the first or last elements. Read moretrue
if the given item is present in this iterator. Read moren
elements from the iterator eagerly,
and return the same iterator again. Read moren
elements from the iterator eagerly,
and return the same iterator again. Read moref
eagerly on each element of the iterator. Read more.collect_vec()
is simply a type specialization of Iterator::collect
,
for convenience.self
from the from
iterator,
stopping at the shortest of the two iterators. Read moresep
. Read moresep
. Read moresep
. Read more.fold_ok()
.Result
values from an iterator. Read moreOption
values from an iterator. Read moreIterator::reduce
insteadIterator::partition
, each partition may
have a distinct type. Read moreResult
s into one list of all the Ok
elements
and another list of all the Err
elements. Read moreHashMap
of keys mapped to Vec
s of values. Keys and values
are taken from (Key, Value)
tuple pairs yielded by the input iterator. Read moreIterator
on a HashMap
. Keys mapped to Vec
s of values. The key is specified
in the closure. Read moreGroupingMap
to be used later with one of the efficient
group-and-fold operations it allows to perform. Read moreGroupingMap
to be used later with one of the efficient
group-and-fold operations it allows to perform. Read more.next()
values without advancing the base iterator. Read moreHashMap
which
contains each item that appears in the iterator and the number
of times it appears. Read moreHashMap
which
contains each item that appears in the iterator and the number
of times it appears,
determining identity using a keying function. Read more