1//! A crate containing general purpose iterators not included in the standard library but quite useful. Regrouped in this crate by usage 2 3pub mod filter; 4 5pub mod share; 6 7mod core; 8pub use crate::core::*; 9 10pub mod child;