MCPcopy Create free account
hub / github.com/FastLED/FastLED / is_double

Method is_double

src/fl/stl/json.h:244–244  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

242 bool is_int() const FL_NOEXCEPT { return mValue && (mValue->is_int() || mValue->is_bool()); }
243 bool is_float() const FL_NOEXCEPT { return mValue && mValue->is_float(); }
244 bool is_double() const FL_NOEXCEPT { return mValue && mValue->is_double(); }
245 // is_number() returns true if the value is any numeric type (int or float)
246 bool is_number() const FL_NOEXCEPT { return mValue && mValue->is_number(); }
247 bool is_string() const FL_NOEXCEPT { return mValue && mValue->is_string(); }

Callers 1

FL_TEST_FILEFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected