123456789101112131415161718192021222324252627 |
- #ifndef BOOST_NUMERIC_CONCEPT_INTEGER_HPP
- #define BOOST_NUMERIC_CONCEPT_INTEGER_HPP
- #include "numeric.hpp"
- namespace boost {
- namespace safe_numerics {
- template <class T>
- struct Integer : public Numeric<T> {
- constexpr static bool value =
- std::numeric_limits<T>::is_integer && Numeric<T>::value ;
- constexpr operator bool (){
- return value;
- }
- };
- }
- }
- #endif
|