view src/lib.rs @ 33:def737737bc8

Add MRParameters type
author Lewin Bormann <lbo@spheniscida.de>
date Sun, 31 Jan 2016 19:33:13 +0000
parents 68f181727187
children bda56504a12c
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;


#[test]
fn it_works() {}