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; };
Returns x divided by y.