std::multiplies
Min standard notice:
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
lhs, rhs: values to multiply
# Return value
The result of lhs * rhs.