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

◆ append() [15/39]

template<typename T>
string & fl::string::append ( const fl::shared_ptr< T > & val)
inline

Definition at line 368 of file string.h.

368 {
369 if (!val) {
370 write("nullptr", 7);
371 } else {
372 write("shared_ptr(use_count=", 21);
373 write(static_cast<fl::u32>(val.use_count()));
374 write(")", 1);
375 }
376 return *this;
377 }
fl::size write(const fl::u8 *data, fl::size n) FL_NOEXCEPT
long use_count() const FL_NOEXCEPT
Definition shared_ptr.h:342

References FL_NOEXCEPT, and fl::basic_string::write().

+ Here is the call graph for this function: