Name
divides class template — Binary functional to divide
Synopsis
template <typename T>
struct divides : binary_function<T, T, T> {
T operator( )(const T& x, const T& y) const;
};
The divides
class template
is a binary functional in which operator(
)
returns x
/
y
.