std::divides
Min standard notice:
Header: <functional>
Function object for performing division. Effectively calls operator/ on two instances of type T.
# Declarations
template< class T >
struct divides;
(until C++14)
template< class T = void >
struct divides;
(since C++14)
# Parameters
lhs, rhs: values to divide one by other
# Return value
The result of lhs / rhs.