Name

multiplies class template — Binary functional for multiplication

Synopsis

template <typename T>
struct multiplies : binary_function<T, T, T> {
  T operator(  )(const T& x, const T& y) const;
};

The multiplies class template is a binary functional in which operator( ) returns x * y.