MCPcopy Create free account
hub / github.com/EmmyLua/EmmyLuaDebugger / is_number

Function is_number

third-party/nlohmann/include/nlohmann/json.hpp:1321–1324  ·  view source on GitHub ↗

@brief return whether value is a number @sa https://json.nlohmann.me/api/basic_json/is_number/

Source from the content-addressed store, hash-verified

1319 /// @brief return whether value is a number
1320 /// @sa https://json.nlohmann.me/api/basic_json/is_number/
1321 constexpr bool is_number() const noexcept
1322 {
1323 return is_number_integer() || is_number_float();
1324 }
1325
1326 /// @brief return whether value is an integer number
1327 /// @sa https://json.nlohmann.me/api/basic_json/is_number_integer/

Callers 1

is_primitiveFunction · 0.85

Calls 2

is_number_integerFunction · 0.85
is_number_floatFunction · 0.85

Tested by

no test coverage detected