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

◆ append() [11/23]

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

Definition at line 559 of file str.h.

559 {
560 append("{");
561 for (auto it = set.begin(); it != set.end(); ++it) {
562 if (it != set.begin()) {
563 append(", ");
564 }
565 auto p = *it;
566 append(p.first);
567 }
568 append("}");
569 return *this;
570 }
Str & append(const T &val)
Definition str.h:439
static FASTLED_NAMESPACE_BEGIN uint8_t const p[]
Definition noise.cpp:30

References Str(), append(), fl::HashMap< Key, T, Hash, KeyEqual, INLINED_COUNT >::begin(), fl::HashMap< Key, T, Hash, KeyEqual, INLINED_COUNT >::end(), and p.

+ Here is the call graph for this function: