functionalplus/0.2.20-p0

Functional Programming Library for C++.
Recipe info
2754(30)
2023-09-15

Available packages
Linux
Windows
macOS
macOS M1

Install
Add the following line to your conanfile.txt:
[requires]
functionalplus/0.2.20-p0

Using functionalplus

Note

If you are new with Conan, we recommend to read the section how to consume packages.

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:

conanfile.txt

[requires]
functionalplus/0.2.20-p0
[generators]
CMakeDeps
CMakeToolchain
[layout]
cmake_layout

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): FunctionalPlus
  • CMake target name(s): FunctionalPlus::fplus
  • fplus => FunctionalPlus::fplus
    
  • pkg-config file name(s): functionalplus.pc
  • fplus => functionalplus-fplus.pc
    

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

# ...
find_package(FunctionalPlus REQUIRED)
# ...
target_link_libraries(YOUR_TARGET FunctionalPlus::fplus)

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

#include "fplus/benchmark_session.hpp"
#include "fplus/compare.hpp"
#include "fplus/composition.hpp"
#include "fplus/container_common.hpp"
#include "fplus/container_properties.hpp"
#include "fplus/container_traits.hpp"
#include "fplus/curry.hpp"
#include "fplus/curry_instances.autogenerated_defines"
#include "fplus/extrapolate.hpp"
#include "fplus/filter.hpp"
#include "fplus/fplus.hpp"
#include "fplus/function_traits.hpp"
#include "fplus/fwd.hpp"
#include "fplus/fwd_instances.autogenerated_defines"
#include "fplus/generate.hpp"
#include "fplus/internal/apply.hpp"
#include "fplus/internal/asserts/composition.hpp"
#include "fplus/internal/asserts/functions.hpp"
#include "fplus/internal/asserts/pairs.hpp"
#include "fplus/internal/compare.hpp"
#include "fplus/internal/composition.hpp"
#include "fplus/internal/container_common.hpp"
#include "fplus/internal/function_traits_asserts.hpp"
#include "fplus/internal/invoke.hpp"
#include "fplus/internal/meta.hpp"
#include "fplus/internal/split.hpp"
#include "fplus/interpolate.hpp"
#include "fplus/maps.hpp"
#include "fplus/maybe.hpp"
#include "fplus/numeric.hpp"
#include "fplus/optimize.hpp"
#include "fplus/pairs.hpp"
#include "fplus/queue.hpp"
#include "fplus/raii.hpp"
#include "fplus/read.hpp"
#include "fplus/replace.hpp"
#include "fplus/result.hpp"
#include "fplus/search.hpp"
#include "fplus/sets.hpp"
#include "fplus/shared_ref.hpp"
#include "fplus/show.hpp"
#include "fplus/side_effects.hpp"
#include "fplus/split.hpp"
#include "fplus/stopwatch.hpp"
#include "fplus/string_tools.hpp"
#include "fplus/timed.hpp"
#include "fplus/transform.hpp"
#include "fplus/tree.hpp"
#include "fplus/variant.hpp"