123456789101112131415161718192021 |
- #ifndef BOOST_NUMERIC_CONCEPT_INTEGER_HPP
- #define BOOST_NUMERIC_CONCEPT_INTEGER_HPP
- #include "numeric.hpp"
- namespace boost {
- namespace safe_numerics {
- template<class T>
- using Integer = std::integral_constant<bool, Numeric<T>() && std::numeric_limits<T>::is_integer>;
- }
- }
- #endif
|