Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

value::is_number

value::is_number

Check if this is a number.

Synopsis

bool
is_number() const noexcept;

Description

This function returns true when kind() is one of kind::int64, kind::uint64, or kind::double_.

Complexity

Constant.

Exception Safety

No-throw guarantee.