Namespaces
Variants
Views
Actions

Difference between revisions of "cpp/utility/functional/multiplies"

From cppreference.com
< cpp‎ | utility‎ | functional
m (Text replace - "{{member frame" to "{{member")
m (Text replace - "===Equivalent function===" to "===Possible implementation===")
Line 42: Line 42:
 
(none)
 
(none)
  
===Equivalent function===
+
===Possible implementation===
 
{{eq fun cpp | 1=
 
{{eq fun cpp | 1=
 
T operator()(const T &lhs, const T &rhs) const  
 
T operator()(const T &lhs, const T &rhs) const  

Revision as of 12:02, 19 March 2012

Template:cpp/utility/functional/sidebar Template:ddcl list begin <tr class="t-dsc-header">

<td>
Defined in header <functional>
</td>

<td></td> <td></td> </tr> <tr class="t-dcl ">

<td class="t-dcl-nopad">
template< class T >
struct multiplies;
</td>

<td class="t-dcl-nopad"> </td> <td class="t-dcl-nopad"> </td> </tr> Template:ddcl list end

Function object for performing multiplication. Effectively calls Template:cpp on type T.

Contents

Member types

Template:tdcl list begin Template:tdcl list hitem Template:tdcl list item Template:tdcl list item Template:tdcl list item Template:tdcl list end

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 Template:cpp.

Exceptions

(none)

Possible implementation

Template:eq fun cpp