Robuta

Sponsor of the Day: Jerkmate
https://doc.rust-lang.org/std/iter/trait.Extend.html Extend in std::iter - Rust Extend a collection with the contents of an iterator. std iter rustextend https://doc.rust-lang.org/std/iter/trait.Step.html Step in std::iter - Rust Objects that have a notion of successor and predecessor operations. std iter ruststep https://doc.rust-lang.org/std/iter/struct.FlatMap.html FlatMap in std::iter - Rust An iterator that maps each element to an iterator, and yields the elements of the produced iterators. std iter rust https://doc.rust-lang.org/std/iter/trait.Iterator.html Iterator in std::iter - Rust A trait for dealing with iterators. std iter rustiterator https://doc.rust-lang.org/std/iter/struct.Peekable.html Peekable in std::iter - Rust An iterator with a `peek()` that returns an optional reference to the next element. std iter rust https://doc.rust-lang.org/std/iter/struct.Successors.html Successors in std::iter - Rust An iterator which, starting from an initial item, computes each successive item from the preceding one. std iter rustsuccessors https://doc.rust-lang.org/std/iter/struct.RepeatWith.html RepeatWith in std::iter - Rust std iter rust https://doc.rust-lang.org/std/iter/trait.DoubleEndedIterator.html DoubleEndedIterator in std::iter - Rust An iterator able to yield elements from both ends. std iter rust https://doc.rust-lang.org/std/iter/struct.MapWindows.html MapWindows in std::iter - Rust An iterator over the mapped windows of another iterator. std iter rust https://doc.rust-lang.org/std/iter/struct.Enumerate.html Enumerate in std::iter - Rust An iterator that yields the current count and the element during iteration. std iter rustenumerate https://doc.rust-lang.org/std/iter/struct.FilterMap.html FilterMap in std::iter - Rust An iterator that uses `f` to both filter and map elements from `iter`. std iter rust https://doc.rust-lang.org/std/iter/trait.FusedIterator.html FusedIterator in std::iter - Rust An iterator that always continues to yield `None` when exhausted. std iter rust https://doc.rust-lang.org/std/iter/struct.Cloned.html Cloned in std::iter - Rust An iterator that clones the elements of an underlying iterator. std iter rustcloned https://doc.rust-lang.org/std/iter/trait.IntoIterator.html IntoIterator in std::iter - Rust Conversion into an `Iterator`. std iter rust https://doc.rust-lang.org/std/iter/struct.TakeWhile.html TakeWhile in std::iter - Rust An iterator that only accepts elements while `predicate` returns `true`. std iter rust https://doc.rust-lang.org/std/iter/trait.Sum.html Sum in std::iter - Rust Trait to represent types that can be created by summing up an iterator. std iter rustsum https://doc.rust-lang.org/std/iter/struct.Intersperse.html Intersperse in std::iter - Rust An iterator adapter that places a separator between all elements. std iter rust https://doc.rust-lang.org/std/iter/struct.Take.html Take in std::iter - Rust An iterator that only iterates over the first `n` iterations of `iter`. std iter rusttake https://doc.rust-lang.org/std/iter/trait.Product.html Product in std::iter - Rust Trait to represent types that can be created by multiplying elements of an iterator. std iter rustproduct https://doc.rust-lang.org/std/iter/struct.Rev.html Rev in std::iter - Rust A double-ended iterator with the direction inverted. std iter rustrev https://doc.rust-lang.org/std/iter/struct.StepBy.html StepBy in std::iter - Rust An iterator for stepping iterators by a custom amount. std iter rust https://doc.rust-lang.org/std/iter/struct.MapWhile.html MapWhile in std::iter - Rust An iterator that only accepts elements while `predicate` returns `Some(_)`. std iter rust https://doc.rust-lang.org/std/iter/struct.Filter.html Filter in std::iter - Rust An iterator that filters the elements of `iter` with `predicate`. std iter rustfilter https://doc.rust-lang.org/std/iter/struct.Chain.html Chain in std::iter - Rust An iterator that links two iterators together, in a chain. std iter rustchain https://doc.rust-lang.org/std/iter/ std::iter - Rust Composable external iteration. std iter rust https://doc.rust-lang.org/std/iter/struct.Zip.html Zip in std::iter - Rust An iterator that iterates two other iterators simultaneously. std iter rustzip https://doc.rust-lang.org/std/iter/struct.Inspect.html Inspect in std::iter - Rust An iterator that calls a function with a reference to each element before yielding it. std iter rustinspect https://doc.rust-lang.org/std/iter/struct.ArrayChunks.html ArrayChunks in std::iter - Rust An iterator over `N` elements of the iterator at a time. std iter rust https://doc.rust-lang.org/std/iter/struct.Fuse.html Fuse in std::iter - Rust An iterator that yields `None` forever after the underlying iterator yields `None` once. std iter rustfuse https://doc.rust-lang.org/std/collections/linked_list/struct.Iter.html Iter in std::collections::linked_list - Rust An iterator over the elements of a `LinkedList`. std collections linkedlist rustiter https://doc.rust-lang.org/std/collections/binary_heap/struct.Iter.html Iter in std::collections::binary_heap - Rust An iterator over the elements of a `BinaryHeap`. std collections binaryheap rustiter https://doc.rust-lang.org/std/collections/hash_map/struct.Iter.html Iter in std::collections::hash_map - Rust An iterator over the entries of a `HashMap`. std collections hashmap rustiter https://doc.rust-lang.org/std/collections/btree_set/struct.Iter.html Iter in std::collections::btree_set - Rust An iterator over the items of a `BTreeSet`. std collections btreeset rustiter https://doc.rust-lang.org/std/sync/mpsc/struct.Iter.html Iter in std::sync::mpsc - Rust An iterator over messages on a `Receiver`, created by `iter`. std sync mpsciterrust https://doc.rust-lang.org/std/option/struct.Iter.html Iter in std::option - Rust An iterator over a reference to the `Some` variant of an `Option`. std option rustiter https://doc.rust-lang.org/std/collections/vec_deque/struct.Iter.html Iter in std::collections::vec_deque - Rust An iterator over the elements of a `VecDeque`. std collections vecdeque rustiter https://doc.rust-lang.org/std/slice/struct.Iter.html Iter in std::slice - Rust Immutable slice iterator std slice rustiter