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

◆ operator<<() [12/30]

template<typename T1, typename T2>
sstream & fl::sstream::operator<< ( const fl::pair< T1, T2 > & p)
inline

Definition at line 197 of file strstream.h.

197 {
198 mStr.append("(");
199 (*this) << p.first;
200 mStr.append(", ");
201 (*this) << p.second;
202 mStr.append(")");
203 return *this;
204 }
string mStr
Definition strstream.h:369
T1 first
Definition pair.h:16
T2 second
Definition pair.h:17

References sstream(), FL_NOEXCEPT, and mStr.

+ Here is the call graph for this function: