// C++03
static const bool is_exact;
// C++11
static constexpr bool is_exact;
概要
型T
が正確(exact)な表現を持つ場合、is_exact
はtrue
となり、そうでない場合false
となる。
is_specialized == false
の場合はfalse
となる。
例
#include <limits>
int main()
{
constexpr bool a = std::numeric_limits<int>::is_exact;
constexpr bool b = std::numeric_limits<char>::is_exact;
constexpr bool c = std::numeric_limits<double>::is_exact;
static_assert(a, "int must be exact");
static_assert(b, "char must be exact");
static_assert(!c, "double must be not exact");
}
出力