Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
.circleci/ | 23-Nov-2023 | - | 61 | 58 | ||
src/ | 23-Nov-2023 | - | 3,063 | 2,510 | ||
.cargo_vcs_info.json | D | 23-Nov-2023 | 74 | 6 | 5 | |
.gitignore | D | 23-Nov-2023 | 31 | 5 | 4 | |
Android.bp | D | 23-Nov-2023 | 2.1 KiB | 75 | 68 | |
CHANGELOG.md | D | 23-Nov-2023 | 1,007 | 27 | 17 | |
Cargo.toml | D | 23-Nov-2023 | 889 | 28 | 25 | |
Cargo.toml.orig | D | 23-Nov-2023 | 365 | 16 | 14 | |
LICENSE | D | 23-Nov-2023 | 11.1 KiB | 203 | 169 | |
LICENSE-APACHE | D | 23-Nov-2023 | 11.1 KiB | 203 | 169 | |
LICENSE-MIT | D | 23-Nov-2023 | 1.1 KiB | 20 | 16 | |
METADATA | D | 23-Nov-2023 | 400 | 20 | 19 | |
MODULE_LICENSE_APACHE2 | D | 23-Nov-2023 | 0 | |||
OWNERS | D | 23-Nov-2023 | 40 | 2 | 1 | |
README.md | D | 23-Nov-2023 | 628 | 16 | 9 | |
TEST_MAPPING | D | 23-Nov-2023 | 148 | 9 | 8 |
README.md
1# 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`. 16