linq 0.0.1-release

Language Integrated Query in Rust.
Documentation
1
2
3
4
5
6
7
8
9
//! Provide the implement of LINQ to Objects, based on `Iterator`.

mod m_enumerable;
mod m_order_by;
mod m_select;
mod m_builtin;
mod m_method;

pub use m_enumerable::*;