10 releases
Uses old Rust 2015
0.1.9 | May 2, 2018 |
---|---|
0.1.8 | Mar 5, 2018 |
0.1.7 | Feb 21, 2018 |
0.1.5 | May 16, 2017 |
0.1.1 | Dec 17, 2016 |
#278 in Rust patterns
1,178,368 downloads per month
Used in 1,476 crates
(28 directly)
24KB
712 lines
fallible-streaming-iterator
Fallible, streaming iteration
License
Licensed under either of
- Apache License, Version 2.0, (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)
at your option.
Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
lib.rs
:
Fallible, streaming iteration.
FallibleStreamingIterator
differs from the standard library's Iterator
trait in two ways:
iteration can fail, resulting in an error, and only one element of the iteration is available at
any time.
While these iterators cannot be used with Rust for
loops, while let
loops offer a similar
level of ergonomics:
while let Some(value) = it.next()? {
// use value
}