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

◆ append() [14/37]

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

Definition at line 833 of file str.h.

833 {
834 // append(val->toString());
835 if (!val) {
836 append("shared_ptr(null)");
837 } else {
838 T* ptr = val.get();
839 append("shared_ptr(");
840 append(*ptr);
841 append(")");
842 }
843 return *this;
844 }
T * get() const noexcept
Definition shared_ptr.h:271
string & append(const BitsetFixed< N > &bs)
Definition str.h:675

References append(), and fl::shared_ptr< T >::get().

+ Here is the call graph for this function: