multiplies

Multiplies the first times the second and returns the resulting value.

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

Returns x multiplied by y.