1 2 3 4 5 6 7
//! # Extensions to the standard library's `Iterator` trait. #![doc = include_str!("./README.md")] pub mod chunks; pub mod fold_while; pub mod window;