MCPcopy Create free account
hub / github.com/Open-GD/OpenGD / is_number_integer

Function is_number_integer

Source/external/json.hpp:20501–20504  ·  view source on GitHub ↗

@brief return whether value is an integer number @sa https://json.nlohmann.me/api/basic_json/is_number_integer/

Source from the content-addressed store, hash-verified

20499 /// @brief return whether value is an integer number
20500 /// @sa https://json.nlohmann.me/api/basic_json/is_number_integer/
20501 constexpr bool is_number_integer() const noexcept
20502 {
20503 return m_type == value_t::number_integer || m_type == value_t::number_unsigned;
20504 }
20505
20506 /// @brief return whether value is an unsigned integer number
20507 /// @sa https://json.nlohmann.me/api/basic_json/is_number_unsigned/

Callers 2

is_numberFunction · 0.85
get_impl_ptrFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected