Subtracts the second from the first and returns the difference.
template <class T> struct minus : binary_function<T,T,T> { T operator()(const T& x, const T& y) const; };
Returns x minus y.