conversion 0.1.0

An abstraction crate to convert iterators on the fly.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! A collection of basic converters.

mod chained;
mod exact;
mod into;
mod iter;
mod map;

pub mod encoding;

pub use chained::ChainedConverter;
pub use exact::ExactConverter;
pub use into::IntoConverter;
pub use iter::{IterConverter, TryIterConverter};
pub use map::{MapConverter, TryMapConverter};