13 #ifndef TINYMPL_DIVIDES_HPP
14 #define TINYMPL_DIVIDES_HPP
16 #include <type_traits>
26 template<
class A,
class B>
struct divides :
27 std::integral_constant<
28 typename std::common_type<
29 typename A::value_type,
30 typename B::value_type>::type,
36 #endif // TINYMPL_DIVIDES_HPP
Computes A/B where A and B are compile time constants.
Definition: divides.hpp:26