Module macro_tools::iter
source · Expand description
Tailored iterator.
Modules§
- Exposed namespace of the module.
- Orphan namespace of the module.
- Prelude to use essentials:
use my_module::prelude::*. - Tailoted iterator.
Macros§
- Chain zero or more iterators together into one sequence.
Enums§
- A type returned by the
diff_withfunction. - The enum
Eitherwith variantsLeftandRightis a general purpose sum type with two cases. - Value that either holds a single A or B, or both.
- An enum used for controlling the execution of
fold_while. MinMaxResultis an enum returned byminmax.- The first component of the value yielded by
WithPosition. Indicates the position of this element in the iterator results.
Traits§
- Extension of iterator.
- Trait that encapsulates a clonable iterator with specific characteristics, tailored for use with the
syncrate. - An
Iteratorblanket implementation that provides extra adaptors and methods. - An iterator that allows peeking at an element before deciding to accept it.
- Trait that encapsulates an iterator with specific characteristics and implemetning
CloneDyn.
Functions§
- Test whether the predicate holds for all elements in the iterable.
- Test whether the predicate holds for any elements in the iterable.
- Assert that two iterables produce equal sequences, with the same semantics as
equal(a, b). - Takes two iterables and creates a new iterator over both in sequence.
- Create an iterator that clones each element from &T to T
- Combine all an iterator’s elements into one element by using
Extend. - Create an iterator that maps for example iterators of
((A, B), C)to(A, B, C). - Compares every element yielded by both
iandjwith the given function in lock-step and returns aDiffwhich describes howjdiffers fromi. - Iterate
iterablewith a running index. - Return
trueif both iterables produce equal sequences (elements pairwise equal and sequences of the same length),falseotherwise. - Perform a fold operation over the iterable.
- Create an iterator that interleaves elements in
iandj. - Iterate
iterablewith a particular value inserted between each element. - Iterate
iterablewith a particular value created by a function inserted between each element. - Creates a new iterator that infinitely applies function to value and yields results.
- Combine all iterator elements into one String, separated by
sep. - Create an iterator that merges elements of the contained iterators using the ordering function.
- Create an iterator that merges elements of the contained iterators.
- Return the maximum value of the iterable.
- Create an iterator that merges elements in
iandj. - Return an iterator adaptor that merge-joins items from the two base iterators in ascending order.
- Return the minimum value of the iterable.
- An iterator adaptor that allows the user to peek at multiple
.next()values without advancing the base iterator. - Converts an iterator of tuples into a tuple of containers.
- An iterator that generalizes .zip() and allows running multiple iterators in lockstep.
- Partition a sequence using predicate
predso that elements that map totrueare placed before elements which map tofalse. - A drop-in replacement for
std::iter::Peekablewhich adds apeek_nthmethod allowing the user topeekat a value several iterations forward without advancing the base iterator. - “Lift” a function of the values of an iterator so that it can process an iterator of
Resultvalues instead. - Create an iterator where you can put back a single item
- Create an iterator where you can put back multiple values to the front of the iteration.
- Return an iterator inside a
Rc<RefCell<_>>wrapper. - Create an iterator that produces
nrepetitions ofelement. - Iterate
iterablein reverse. - Sort all iterator elements into a new iterator in ascending order.
- Creates a new unfold source with the specified closure as the “iterator function” and an initial state to eventually pass to the closure
- Converts the arguments to iterators and zips them.
- Iterate
iandjin lock step.
Type Aliases§
- Type alias for boxed
_IterTraittrait objects.