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

◆ integer_digits_func()

template<typename T>
int fl::detail::integer_digits_func ( )
constexpr

Definition at line 17 of file limits.h.

17 {
18 return (sizeof(T) * 8) - (T(-1) < T(0) ? 1 : 0);
19 }

References FL_NOEXCEPT.