MCPcopy Create free account
hub / github.com/FastFlowLM/FastFlowLM / is_number_integer

Function is_number_integer

src/include/nlohmann/json.hpp:1363–1366  ·  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

1361 /// @brief return whether value is an integer number
1362 /// @sa https://json.nlohmann.me/api/basic_json/is_number_integer/
1363 constexpr bool is_number_integer() const noexcept
1364 {
1365 return m_data.m_type == value_t::number_integer || m_data.m_type == value_t::number_unsigned;
1366 }
1367
1368 /// @brief return whether value is an unsigned integer number
1369 /// @sa https://json.nlohmann.me/api/basic_json/is_number_unsigned/

Callers 6

operator-Method · 0.85
to_strMethod · 0.85
operator+Method · 0.85
operator*Method · 0.85
operator/Method · 0.85
is_numberFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected