FastLED 3.9.15
Loading...
Searching...
No Matches

◆ isdigit()

bool fl::isdigit ( char c)
inline

Check if character is a decimal digit (0-9)

Parameters
cThe character to check
Returns
true if c is a digit, false otherwise

Definition at line 25 of file cctype.h.

25 {
26 return c >= '0' && c <= '9';
27}

References FL_NOEXCEPT.

Referenced by fl::float_conversion_visitor< FloatType >::operator()(), fl::float_conversion_visitor< double >::operator()(), fl::int_conversion_visitor< IntType >::operator()(), fl::int_conversion_visitor< i64 >::operator()(), and fl::anonymous_namespace{http_parser.cpp.hpp}::parseInt().

+ Here is the caller graph for this function: