Difference between revisions of "cpp/utility/functional/multiplies"
From cppreference.com
< cpp | utility | functional
m (Text replace - "{{tdcl" to "{{dcl") |
m (Text replace - "/sidebar" to "/navbar") |
||
Line 1: | Line 1: | ||
{{cpp/title|multiplies}} | {{cpp/title|multiplies}} | ||
− | {{cpp/utility/functional/ | + | {{cpp/utility/functional/navbar}} |
{{ddcl list begin}} | {{ddcl list begin}} | ||
{{ddcl list header | functional }} | {{ddcl list header | functional }} |
Revision as of 14:17, 15 June 2012
Template:ddcl list begin <tr class="t-dsc-header">
<td>Defined in header
</td>
<functional>
<td></td> <td></td> </tr> <tr class="t-dcl ">
<td class="t-dcl-nopad">template< class T >
struct multiplies;
</td>
struct multiplies;
<td class="t-dcl-nopad"> </td> <td class="t-dcl-nopad"> </td> </tr> Template:ddcl list end
Function object for performing multiplication. Effectively calls operator* on type T
.
Contents |
Member types
Type | Definition |
result_type
|
T
|
first_argument_type
|
T
|
second_argument_type
|
T
|
Member functions
operator() |
returns the product of two arguments (public member function) |
std::multiplies::operator()
T operator()( const T& lhs, const T& rhs ) const; |
||
Returns the product of lhs
and rhs
.
Parameters
lhs, rhs | - | values to multiply |
Return value
The result of lhs * rhs.
Exceptions
(none)