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

◆ append() [13/37]

template<typename T>
string & fl::string::append ( const fl::optional< T > & opt)
inline

Definition at line 901 of file str.h.

901 {
902 if (opt.has_value()) {
903 append(*opt);
904 } else {
905 append("nullopt");
906 }
907 return *this;
908 }
bool has_value() const
Definition optional.h:30
string & append(const BitsetFixed< N > &bs)
Definition str.h:675

References append(), and fl::Optional< T >::has_value().

+ Here is the call graph for this function: