blob: e7a4af22b824e6c66e3653587a5287b7e701c4ec [file] [log] [blame] [view]
Joel Galenson6b7b06b2020-07-28 13:47:34 -07001# rust-fallible-iterator
2
3[![CircleCI](https://circleci.com/gh/sfackler/rust-fallible-iterator.svg?style=shield)](https://circleci.com/gh/sfackler/rust-fallible-iterator)
4
5[Documentation](https://sfackler.github.io/rust-fallible-iterator/doc/v0.1.3/fallible_iterator)
6
7"Fallible" iterators for Rust.
8
9## Features
10
11If the `std` or `alloc` features are enabled, this crate provides implementations for
12`Box`, `Vec`, `BTreeMap`, and `BTreeSet`. If the `std` feature is enabled, this crate
13additionally provides implementations for `HashMap` and `HashSet`.
14
15If the `std` feature is disabled, this crate does not depend on `libstd`.