Skip to content

dalle/adhd-mapreduce

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 

Repository files navigation

adhd-mapreduce

MapReduce library for C++.

Example

using namespace adhd;
std::vector<int> v = { 10, 20, 30, 40 };
const auto res = v
   >> map([](auto i) { return i / 5; })
   >> map([](auto i) { return i + 1; })
   >> filter([](auto i) { return i > 5; })
   >> reduce([](auto acc, auto cur) { return acc + cur; }, 0);

About

MapReduce library for C++

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages