Warning, file /include/boost/safe_numerics/concept/numeric.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_NUMERIC_HPP
0002 #define BOOST_NUMERIC_CONCEPT_NUMERIC_HPP
0003
0004
0005
0006
0007
0008
0009
0010 #include <limits>
0011 #include <cstdint>
0012 #include <type_traits>
0013
0014 namespace boost {
0015 namespace safe_numerics {
0016
0017 template<class T>
0018 using Numeric = std::integral_constant<bool, std::numeric_limits<T>::is_specialized>;
0019
0020 }
0021 }
0022
0023 #endif