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

◆ append() [11/24]

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

Definition at line 572 of file str.h.

572 {
573 append("{");
574 for (auto it = set.begin(); it != set.end(); ++it) {
575 if (it != set.begin()) {
576 append(", ");
577 }
578 auto p = *it;
579 append(p.first);
580 }
581 append("}");
582 return *this;
583 }
Str & append(const T &val)
Definition str.h:440
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: