iterable 0.6.0

An iterable library for Rust collection like types.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod array;
mod collections;
mod slice;
mod str;
mod string;
mod vec;

pub use self::array::*;
pub use self::collections::*;
pub use self::slice::*;
pub use self::str::*;
pub use self::string::*;
pub use self::vec::*;