view src/lib.rs @ 45:46fdc16f8098

Add LICENSE file. This license's terms apply retroactively.
author Lewin Bormann <lbo@spheniscida.de>
date Tue, 02 Feb 2016 07:18:38 +0000
parents ab7d19e012e0
children 6a51cc42d1a6
line wrap: on
line source

//! Implements a mapreduce process bounded to one machine;
//! this is supposed to result in better data parallelization.
//!

pub mod closure_mr;
pub mod formats;
pub mod map;
pub mod mapreducer;
pub mod parameters;
pub mod record_types;
pub mod shard_merge;


#[test]
fn it_works() {}