Docs.rs
zip_long-0.1.1
zip_long 0.1.1
Permalink
Docs.rs crate page
MIT
Links
Repository
crates.io
Source
Owners
efronlicht
Dependencies
Versions
85.71%
of the crate is documented
Platform
i686-pc-windows-msvc
i686-unknown-linux-gnu
x86_64-apple-darwin
x86_64-pc-windows-msvc
x86_64-unknown-linux-gnu
Feature flags
Rust
About docs.rs
Privacy policy
Rust website
The Book
Standard Library API Reference
Rust by Example
The Cargo Guide
Clippy Documentation
zip_
long
0.1.1
All Items
Crate Items
Structs
Traits
Crate
zip_long
Copy item path
Source
Structs
§
Filler
Filler zips together two iterators using the provided closure to fill in for the shorter iterator once it is exhausted.
Filler
With
FillerWith zips together two iterators using clones of the provided item to fill in for the shorter iterator once is is exhausted.
Traits
§
Zip
Zip together two iterators, creating a single iterator that yields the item(s) in parallel until the longer iterator is exhausted. Unlike the zip iterator adaptor in
::std::iter
, these adaptors yield elements until the LONGER iterator is exhausted.