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

◆ write() [10/11]

fl::size fl::basic_string::write ( const u64 & val)

Definition at line 318 of file basic_string.cpp.hpp.

318 {
319 char buf[64] = {0};
320 int len = fl::utoa64(val, buf, 10);
321 return write(buf, len);
322}
fl::size write(const fl::u8 *data, fl::size n) FL_NOEXCEPT
int utoa64(u64 value, char *sp, int radix)
Convert unsigned 64-bit integer to string buffer in given radix.