Warning, file /include/boost/safe_numerics/concept/integer.hpp was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001 #ifndef BOOST_NUMERIC_CONCEPT_INTEGER_HPP
0002 #define BOOST_NUMERIC_CONCEPT_INTEGER_HPP
0003
0004
0005
0006
0007
0008
0009
0010 #include "numeric.hpp"
0011
0012 namespace boost {
0013 namespace safe_numerics {
0014
0015 template<class T>
0016 using Integer = std::integral_constant<bool, Numeric<T>() && std::numeric_limits<T>::is_integer>;
0017
0018 }
0019 }
0020
0021 #endif