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

◆ append() [18/37]

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

Definition at line 886 of file str.h.

886 {
887 append("{");
888 for (auto it = set.begin(); it != set.end(); ++it) {
889 if (it != set.begin()) {
890 append(", ");
891 }
892 auto p = *it;
893 append(p.first);
894 }
895 append("}");
896 return *this;
897 }
string & append(const BitsetFixed< N > &bs)
Definition str.h:675

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

+ Here is the call graph for this function: