Difference between revisions of "cpp/utility/functional/multiplies"
From cppreference.com
< cpp | utility | functional
m (Text replace - "/sidebar" to "/navbar") |
m (~) |
||
(12 intermediate revisions by 6 users not shown) | |||
Line 1: | Line 1: | ||
{{cpp/title|multiplies}} | {{cpp/title|multiplies}} | ||
{{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 multiplies; | struct multiplies; | ||
}} | }} | ||
− | {{ | + | {{dcl|since=c++14| |
+ | template< class T {{=}} void > | ||
+ | struct multiplies; | ||
+ | }} | ||
+ | {{dcl rev end}} | ||
+ | {{dcl end}} | ||
− | Function object for performing multiplication. Effectively calls {{c|operator*}} on type {{tt|T}}. | + | Function object for performing multiplication. 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::multiplies}} 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 multiplies_void}} |
− | + | {{dsc end}} | |
+ | }} | ||
+ | {{rev end}} | ||
+ | |||
+ | {{cpp/utility/functional/member types|result=T|arg1=T|arg2=T}} | ||
===Member functions=== | ===Member functions=== | ||
− | {{ | + | {{dsc begin}} |
− | {{ | + | {{dsc mem fun|operator()|nolink=true|returns the product of two arguments}} |
− | {{ | + | {{dsc end}} |
− | {{member | {{small|std::multiplies::}}operator() | 2= | + | {{member|{{small|std::multiplies::}}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 product of {{ | + | Returns the product of {{c|lhs}} and {{c|rhs}}. |
===Parameters=== | ===Parameters=== | ||
− | {{ | + | {{par begin}} |
− | {{ | + | {{par|lhs, rhs|values to multiply}} |
− | {{ | + | {{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 | + | {{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 50: | Line 61: | ||
}} | }} | ||
}} | }} | ||
+ | |||
+ | {{langlinks|de|es|fr|it|ja|pt|ru|zh}} |
Latest revision as of 21:07, 13 July 2024
Defined in header <functional>
|
||
template< class T > struct multiplies; |
(until C++14) | |
template< class T = void > struct multiplies; |
(since C++14) | |
Function object for performing multiplication. 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 product of two arguments (public member function) |
std::multiplies::operator()
T operator()( const T& lhs, const T& rhs ) const; |
(constexpr since C++14) | |
Returns the product of lhs and rhs.
Parameters
lhs, rhs | - | values to multiply |
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; } |