Difference between revisions of "cpp/utility/functional/plus"
From cppreference.com
< cpp | utility | functional
(use template) |
m (~) |
||
(14 intermediate revisions by 7 users not shown) | |||
Line 1: | Line 1: | ||
{{cpp/title|plus}} | {{cpp/title|plus}} | ||
{{cpp/utility/functional/navbar}} | {{cpp/utility/functional/navbar}} | ||
− | {{ | + | {{dcl begin}} |
− | {{ | + | {{dcl header|functional}} |
− | {{ | + | {{dcl rev begin}} |
+ | {{dcl|until=c++14| | ||
template< class T > | template< class T > | ||
struct plus; | struct plus; | ||
}} | }} | ||
− | {{ | + | {{dcl|since=c++14| |
+ | template< class T {{=}} void > | ||
+ | struct plus; | ||
+ | }} | ||
+ | {{dcl rev end}} | ||
+ | {{dcl end}} | ||
Function object for performing addition. Effectively calls {{c|operator+}} on two instances of type {{tt|T}}. | Function object for performing addition. Effectively calls {{c|operator+}} on two instances of type {{tt|T}}. | ||
− | === | + | ===Specializations=== |
− | {{ | + | {{rev begin}} |
− | {{ | + | {{rev|since=c++14| |
− | + | The standard library provides a specialization of {{tt|std::plus}} when {{tt|T}} is not specified, which leaves the parameter types and return type to be deduced. | |
− | {{ | + | {{dsc begin}} |
− | {{ | + | {{dsc inc|cpp/utility/functional/dsc plus_void}} |
− | + | {{dsc end}} | |
+ | }} | ||
+ | {{rev end}} | ||
+ | |||
+ | {{cpp/utility/functional/member types|result=T|arg1=T|arg2=T}} | ||
===Member functions=== | ===Member functions=== | ||
− | {{ | + | {{dsc begin}} |
− | {{ | + | {{dsc inc|cpp/utility/functional/plus/dsc operator()}} |
− | {{ | + | {{dsc end}} |
− | {{member | {{small|std::plus::}}operator() | 2= | + | {{member|{{small|std::plus::}}operator()|2= |
− | {{ | + | {{dcl begin}} |
+ | {{dcla|constexpr=c++14|1= | ||
T operator()( const T& lhs, const T& rhs ) const; | T operator()( const T& lhs, const T& rhs ) const; | ||
}} | }} | ||
+ | {{dcl end}} | ||
− | Returns the sum of {{ | + | Returns the sum of {{c|lhs}} and {{c|rhs}}. |
===Parameters=== | ===Parameters=== | ||
− | {{ | + | {{par begin}} |
− | {{ | + | {{par|lhs, rhs|values to sum}} |
− | {{ | + | {{par end}} |
===Return value=== | ===Return value=== | ||
The result of {{c|lhs + rhs}}. | The result of {{c|lhs + rhs}}. | ||
− | + | {{cpp/impldef exception}} | |
− | + | ||
===Possible implementation=== | ===Possible implementation=== | ||
− | {{eq fun | 1= | + | {{eq fun|1= |
− | T operator()(const T &lhs, const T &rhs) const | + | constexpr T operator()(const T& lhs, const T& rhs) const |
{ | { | ||
return lhs + rhs; | return lhs + rhs; | ||
Line 51: | Line 62: | ||
}} | }} | ||
− | + | {{langlinks|de|es|fr|it|ja|pt|ru|zh}} | |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + |
Latest revision as of 21:00, 13 July 2024
Defined in header <functional>
|
||
template< class T > struct plus; |
(until C++14) | |
template< class T = void > struct plus; |
(since C++14) | |
Function object for performing addition. Effectively calls operator+ on two instances of type T
.
Contents |
[edit] Specializations
The standard library provides a specialization of
|
(since C++14) |
[edit] Member types
Type | Definition |
result_type (deprecated in C++17)(removed in C++20)
|
T
|
first_argument_type (deprecated in C++17)(removed in C++20)
|
T
|
second_argument_type (deprecated in C++17)(removed in C++20)
|
T
|
These member types are obtained via publicly inheriting std::binary_function<T, T, T>. |
(until C++11) |
[edit] Member functions
operator() |
returns the sum of two arguments (public member function) |
std::plus::operator()
T operator()( const T& lhs, const T& rhs ) const; |
(constexpr since C++14) | |
Returns the sum of lhs and rhs.
Parameters
lhs, rhs | - | values to sum |
Return value
The result of lhs + rhs.
[edit] Exceptions
May throw implementation-defined exceptions.
Possible implementation
constexpr T operator()(const T& lhs, const T& rhs) const { return lhs + rhs; } |