pipes/1.0.0

Pipelines for expressive code on collections in C++
Recipe info
2023-07-01

Available packages
Header Only

Install
Add the following line to your conanfile.txt:
[requires]
pipes/1.0.0

Using pipes

Note

If you are a new Conan user, we recommend reading the how to consume packages tutorial.

If you need additional assistance, please ask a question in the Conan Center Index repository.

Simplest use case consuming this recipe and assuming CMake as your local build tool:

[requires]
pipes/1.0.0
[generators]
CMakeDeps
CMakeToolchain
[layout]
cmake_layout
from conan import ConanFile
from conan.tools.cmake import cmake_layout


class ExampleRecipe(ConanFile):
    settings = "os", "compiler", "build_type", "arch"
    generators = "CMakeDeps", "CMakeToolchain"

    def requirements(self):
        self.requires("pipes/1.0.0")

    def layout(self):
        cmake_layout(self)

Now, you can run this Conan command to locally install (and build if necessary) this recipe and its dependencies (if any):

$ conan install conanfile.txt --build=missing

Useful information to take into account to consume this library:


These are the main declared targets:

  • CMake package name(s): pipes
  • CMake target name(s): pipes::pipes
  • pkg-config file name(s): pipes.pc

A simple use case using the CMake file name and the global target:

# ...
find_package(pipes REQUIRED)
# ...
target_link_libraries(YOUR_TARGET pipes::pipes)

These are all the available headers. Some of these ones might be non-public; make sure of it by visiting the pipes homepage listed above:

#include "pipes/adjacent.hpp"
#include "pipes/base.hpp"
#include "pipes/cartesian_product.hpp"
#include "pipes/combinations.hpp"
#include "pipes/dev_null.hpp"
#include "pipes/do_then.hpp"
#include "pipes/drop.hpp"
#include "pipes/drop_while.hpp"
#include "pipes/filter.hpp"
#include "pipes/for_each.hpp"
#include "pipes/fork.hpp"
#include "pipes/helpers/FWD.hpp"
#include "pipes/helpers/assignable.hpp"
#include "pipes/helpers/crtp.hpp"
#include "pipes/helpers/detect.hpp"
#include "pipes/helpers/invoke.hpp"
#include "pipes/helpers/meta.hpp"
#include "pipes/helpers/optional.hpp"
#include "pipes/impl/concepts.hpp"
#include "pipes/impl/pipes_assembly.hpp"
#include "pipes/insert.hpp"
#include "pipes/intersperse.hpp"
#include "pipes/join.hpp"
#include "pipes/map_aggregator.hpp"
#include "pipes/mux.hpp"
#include "pipes/operator.hpp"
#include "pipes/override.hpp"
#include "pipes/partition.hpp"
#include "pipes/pipes.hpp"
#include "pipes/push_back.hpp"
#include "pipes/read_in_stream.hpp"
#include "pipes/send.hpp"
#include "pipes/set_aggregator.hpp"
#include "pipes/stride.hpp"
#include "pipes/switch.hpp"
#include "pipes/take.hpp"
#include "pipes/take_while.hpp"
#include "pipes/tap.hpp"
#include "pipes/tee.hpp"
#include "pipes/to_out_stream.hpp"
#include "pipes/transform.hpp"
#include "pipes/unzip.hpp"