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

◆ append_u64_decimal()

static void fl::append_u64_decimal ( fl::string & out,
fl::u64 value )
static

Definition at line 431 of file ieee754_string.cpp.hpp.

431 {
432 char buf[24];
433 const int n = fl::utoa64(value, buf, 10);
434 for (int i = 0; i < n; ++i) {
435 out += fl::string(1, buf[i]);
436 }
437}
constexpr int type_rank< T >::value
int utoa64(u64 value, char *sp, int radix)
Convert unsigned 64-bit integer to string buffer in given radix.

References FL_NOEXCEPT, type_rank< T >::value, and utoa64().

Referenced by ieee754_format_decimal().

+ Here is the call graph for this function:
+ Here is the caller graph for this function: