1
 2
 3
 4
 5
 6
 7
 8
 9
10
//! A crate containing general purpose iterators not included in the standard library but quite useful. Regrouped in this crate by usage

pub mod filter;

pub mod share;

mod core;
pub use crate::core::*;

pub mod child;