Skip to content

Latest commit

 

History

History
46 lines (33 loc) · 1.27 KB

README.md

File metadata and controls

46 lines (33 loc) · 1.27 KB

Getting Started

pipeline is a C++17 header-only template library that lets you setup data processsing pipelines. Simply include <pipeline/pipeline.hpp> and you're good to go. There is also a single_include version in single_include/.

Let's start with the simple pipeline below. Wrap your functions using pipeline::fn and create a pipeline using the pipe (|) operator. Then simply call the pipeline to execute a sequence of functions.

#include <iostream>
#include <pipeline/pipeline.hpp>
using namespace pipeline;

int main() {
  auto add_2 = fn([](auto a, auto b) { return a + b; });
  auto print = fn([](auto result) { std::cout << result << "\n"; });
  
  auto pipeline = add_2 | print;
  
  pipeline(2, 3); // 5
}

Building Samples

git clone https://github.com/p-ranav/pipeline
cd pipeline
mkdir build && cd build
cmake -DPIPELINE_SAMPLES=ON ..
make

Generating Single Header

python3 utils/amalgamate/amalgamate.py -c single_include.json -s .

Contributing

Contributions are welcome, have a look at the CONTRIBUTING.md document for more information.

License

The project is available under the MIT license.