view src/lib.rs @ 87:168e8777de73

Some refactoring
author Lewin Bormann <lbo@spheniscida.de>
date Sun, 07 Feb 2016 15:14:22 +0000
parents 9d7c1468f1b2
children e6b0d8ebe0f1
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 controller;
pub mod formats;
pub mod map;
pub mod mapreducer;
pub mod parameters;
pub mod record_types;
pub mod reduce;
pub mod shard_merge;
pub mod sort;

#[test]
fn it_works() {}