Contains functors for composing other functors. More...
#include "../defs.h"
#include <functional>
Go to the source code of this file.
Classes | |
class | unary_compose_unary_unary< F, G > |
Unary function composition of two unary functions: f(g(x)). More... | |
class | binary_compose_unary_binary< F, G > |
Binary function composition of a unary and binary function: f(g(x,y)). More... | |
class | unary_compose_binary_unary< F, G, H > |
Unary function composition of a binary and unary functions: f(g(x),h(x)). More... | |
class | binary_compose_binary_unary< F, G, H > |
Binary function composition of a binary and unary functions: f(g(x),h(y)). More... |
Contains functors for composing other functors.
This file contains functors with more functionality that the standard functor composition classes. It defines the following functors: