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

Function isfinite

extlibs/fmt/include/fmt/chrono.h:673–675  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

671
672template <typename T, FMT_ENABLE_IF(std::is_integral<T>::value)>
673inline bool isfinite(T) {
674 return true;
675}
676template <typename T, FMT_ENABLE_IF(std::is_floating_point<T>::value)>
677inline bool isfinite(T value) {
678 return std::isfinite(value);

Callers 3

safe_float_conversionFunction · 0.85
handle_nan_infMethod · 0.85
writeMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected