SkillAgentSearch skills...

Pipeline

Pipelines for Modern C++

Install / Use

/learn @p-ranav/Pipeline

README

<p align="center"> <img height="70" src="img/logo.png"/> </p>

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.

View on GitHub
GitHub Stars76
CategoryDevelopment
Updated2mo ago
Forks10

Languages

C++

Security Score

100/100

Audited on Jan 23, 2026

No findings