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

◆ append() [20/39]

template<typename Key, typename Hash, typename KeyEqual>
string & fl::string::append ( const HashSet< Key, Hash, KeyEqual > & set)
inline

Definition at line 413 of file string.h.

413 {
414 append("{");
415 fl::size i = 0;
416 for (auto it = set.begin(); it != set.end(); ++it) {
417 if (i > 0) append(",");
418 append(*it);
419 ++i;
420 }
421 append("}");
422 return *this;
423 }
string & append(const bitset_fixed< N > &bs) FL_NOEXCEPT
Definition string.h:284

References append(), fl::set< Key, Allocator >::begin(), fl::set< Key, Allocator >::end(), and FL_NOEXCEPT.

+ Here is the call graph for this function: