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

◆ operator<<() [16/30]

template<typename Key, typename Value, fl::size N>
sstream & fl::sstream::operator<< ( const fl::unsorted_map_fixed< Key, Value, N > & map)
inline

Definition at line 146 of file strstream.h.

146 {
147 mStr.append("{");
148 bool first = true;
149 for (auto it = map.begin(); it != map.end(); ++it) {
150 if (!first) {
151 mStr.append(", ");
152 }
153 first = false;
154 (*this) << it->first;
155 mStr.append(": ");
156 (*this) << it->second;
157 }
158 mStr.append("}");
159 return *this;
160 }
iterator end()
Definition rbtree.h:1103
iterator begin()
Definition rbtree.h:1100
string mStr
Definition strstream.h:369
MapRedBlackTree< Key, T, Compare, fl::allocator_slab< char > > map
Definition map.h:283

References sstream(), FL_NOEXCEPT, and mStr.

+ Here is the call graph for this function: