Functional (C++)


In the context of the programming language C++, functional refers to a header file that is part of the C++ Standard Library and provides a set of predefined class templates for function objects, including operations for arithmetic, comparisons, and logic. Instances of these class templates are C++ classes that define a function call operator, and the instances of these classes can be called as if they were functions. It is possible to perform very sophisticated operations without writing a new function object, simply by combining predefined function objects and function object adaptors.
The class template std::function provided by C++11 is a general-purpose polymorphic function wrapper. Instances of std::function can store, copy, and invoke any callable target—functions, lambda expressions, bind expressions, or other function objects.
The algorithms provided by the C++ Standard Library do not require function objects of more than two arguments. Function objects that return Boolean values are an important special case. A unary function whose return type is is called a predicate, and a binary function whose return type is is called a binary predicate.

Adaptable function objects

In general, a function object has restrictions on the type of its argument. The type restrictions need not be simple, though: may be overloaded or may be a member template. Similarly, there need be no way for a program to determine what those restrictions are. An adaptable function object, however, does specify what the argument and return types are, and provides nested typedef|s so that those types can be named and used in programs. If a type is a model of an adaptable generator, then it must define. Similarly, if is a model of the adaptable unary function, it must define and, and if is a model of the adaptable binary function, it must define,, and. The C++ Standard Library provides base classes and to simplify the definition of adaptable unary functions and adaptable binary functions.
Adaptable function objects are important, because they can be used by function object adaptors: function objects that transform or manipulate other function objects. The C++ Standard Library provides many different function object adaptors, including , and and, which perform composition of function object.

Predefined function objects

The C++ Standard Library includes in the header file functional many different predefined function objects, including arithmetic operations, comparisons, and logical operations.

Examples

Function wrappers can be used to make calls to ordinary functions or to functions objects created by lambda expressions.

  1. include
  2. include
/* Define a template function */
template
void PrintValue
int main

Function wrappers also can be used to access member variables and member functions of classes.

  1. include
  2. include
template
class CAnyData ;
int main