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