MCPcopy Create free account
hub / github.com/ObEngine/ObEngine / isnan

Function isnan

extlibs/fmt/include/fmt/chrono.h:664–666  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

662
663template <typename T, FMT_ENABLE_IF(std::is_integral<T>::value)>
664inline bool isnan(T) {
665 return false;
666}
667template <typename T, FMT_ENABLE_IF(std::is_floating_point<T>::value)>
668inline bool isnan(T value) {
669 return std::isnan(value);

Callers 5

safe_duration_castFunction · 0.70
to_nonnegative_intFunction · 0.70
handle_nan_infMethod · 0.70
writeMethod · 0.70
format_localizedMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected