std::multiplies

Header: <functional>

Function object for performing multiplication. Effectively calls operator* on two instances of type T.

# Declarations

template< class T >
struct multiplies;

(until C++14)

template< class T = void >
struct multiplies;

(since C++14)

# Parameters

# Return value

The result of lhs * rhs.