blob: 5075103a01671f4c34aa98d010d275f159103f78 [file] [log] [blame]
Joel Galenson2ad6afb2021-09-30 10:30:09 -07001[package]
2authors = ["Nick Fitzgerald <fitzgen@gmail.com>"]
3description = "Like `Iterator::take_while`, but calls the predicate on a peeked value. This allows you to use `Iterator::by_ref` and `Iterator::take_while` together, and still get the first value for which the `take_while` predicate returned false after dropping the `by_ref`."
4categories = ["no-std", "rust-patterns"]
5edition = "2018"
6keywords = ["iterator", "take_while", "peek", "by_ref"]
7license = "MIT OR Apache-2.0"
8name = "peeking_take_while"
9readme = "./README.md"
10repository = "https://github.com/fitzgen/peeking_take_while"
11version = "1.0.0"
12
13[badges]
14[badges.travis-ci]
15repository = "fitzgen/peeking_take_while"