Namespaces
Variants
Views
Actions

Function objects

From cppreference.com
 
 
 
Function objects
Function wrappers
function(C++11)
mem_fn(C++11)
bad_function_call(C++11)
Bind
bind(C++11)
is_bind_expression(C++11)
is_placeholder(C++11)
_1, _2, _3, ...(C++11)
Reference wrappers
reference_wrapper(C++11)
ref
cref
(C++11)
(C++11)
Operator wrappers
Negators
Deprecated binders and adaptors
unary_function(deprecated)
binary_function(deprecated)
ptr_fun(deprecated)
pointer_to_unary_function(deprecated)
pointer_to_binary_function(deprecated)
mem_fun(deprecated)
mem_fun_t
mem_fun1_t
const_mem_fun_t
const_mem_fun1_t
(deprecated)
(deprecated)
(deprecated)
(deprecated)
mem_fun_ref(deprecated)
mem_fun_ref_t
mem_fun1_ref_t
const_mem_fun_ref_t
const_mem_fun1_ref_t
(deprecated)
(deprecated)
(deprecated)
(deprecated)
binder1st
binder2nd
(deprecated)
(deprecated)
bind1st
bind2nd
(deprecated)
(deprecated)
 

A function object is any object for which the function call operator is defined. C++ provides many built-in function objects as well as support for creation and manipulation of new function objects.

Contents

[edit] Polymorphic function wrappers

std::function provides support for storing arbitrary function objects.

(C++11)
wraps callable object of any type with specified function call signature
(class template) [edit]
(C++11)
creates a function object out of a pointer to a member
(function template) [edit]
the exception thrown when invoking an empty std::function
(class) [edit]

[edit] Bind

std::bind provides support for partial function application, i.e. binding arguments to functions to produce new functions.

(C++11)
binds one or more arguments to a function object
(function template) [edit]
indicates that an object is std::bind expression or can be used as one
(class template) [edit]
indicates that an object is a standard placeholder or can be used as one
(class template) [edit]
Defined in namespace std::placeholders
placeholders for the unbound arguments in a std::bind expression
(constant) [edit]

[edit] Reference wrappers

Reference wrappers allow reference arguments to be stored in copyable function objects:

CopyConstructible and CopyAssignable reference wrapper
(class template) [edit]
(C++11)
(C++11)
creates a std::reference_wrapper with a type deduced from its argument
(function template) [edit]

[edit] Function objects

C++ defines several function objects that represent common arithmetic and logical operations:

Arithmetic operations
function object implementing x + y
(class template) [edit]
function object implementing x - y
(class template) [edit]
function object implementing x * y
(class template) [edit]
function object implementing x / y
(class template) [edit]
function object implementing x % y
(class template) [edit]
function object implementing -x
(class template) [edit]
Comparisons
function object implementing x == y
(class template) [edit]
function object implementing x != y
(class template) [edit]
function object implementing x > y
(class template) [edit]
function object implementing x < y
(class template) [edit]
function object implementing x >= y
(class template) [edit]
function object implementing x <= y
(class template) [edit]
Logical operations
function object implementing x && y
(class template) [edit]
function object implementing x || y
(class template) [edit]
function object implementing !x
(class template) [edit]
Bitwise operations
function object implementing x & y
(class template) [edit]
function object implementing x | y
(class template) [edit]
function object implementing x ^ y
(class template) [edit]
Negators
wrapper function object returning the complement of the unary predicate it holds
(class template) [edit]
wrapper function object returning the complement of the binary predicate it holds
(class template) [edit]
constructs custom std::unary_negate object
(function template) [edit]
constructs custom std::binary_negate object
(function template) [edit]

[edit] Deprecated in C++11

Several utilities that provided early functional support are deprecated in C++11:

Base
(deprecated)
adaptor-compatible unary function base class
(class template) [edit]
(deprecated)
adaptor-compatible binary function base class
(class template) [edit]
Binders
(deprecated)
(deprecated)
function object holding a binary function and one of its arguments
(class template) [edit]
(deprecated)
(deprecated)
binds one argument to a binary function
(function template) [edit]
Function adaptors
adaptor-compatible wrapper for a pointer to unary function
(class template) [edit]
adaptor-compatible wrapper for a pointer to binary function
(class template) [edit]
(deprecated)
creates an adaptor-compatible function object wrapper from a pointer to function
(function template) [edit]
(deprecated)
(deprecated)
(deprecated)
(deprecated)
wrapper for a pointer to nullary or unary member function, callable with a pointer to object
(class template) [edit]
(deprecated)
creates a wrapper from a pointer to member function, callable with a pointer to object
(function template) [edit]
(deprecated)
(deprecated)
(deprecated)
(deprecated)
wapper for a pointer to nullary or unary member function, callable with a reference to object
(class template) [edit]
(deprecated)
creates a wrapper from a pointer to member function, callable with a reference to object
(function template) [edit]