divides

Divides the first by the second and returns the resulting value.

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

Returns x divided by y.