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

◆ operator<<() [10/14]

StrStream & fl::StrStream::operator<< ( const Tile2x2_u8 & subpixel)

Definition at line 9 of file strstream.cpp.

9 {
10 mStr.append("Tile2x2_u8(");
11 mStr.append(subpixel.bounds());
12 mStr.append(" => ");
13 mStr.append(subpixel.at(0, 0));
14 mStr.append(",");
15 mStr.append(subpixel.at(0, 1));
16 mStr.append(",");
17 mStr.append(subpixel.at(1, 0));
18 mStr.append(",");
19 mStr.append(subpixel.at(1, 1));
20 mStr.append(")");
21 return *this;
22}

References StrStream(), fl::Tile2x2_u8::at(), fl::Tile2x2_u8::bounds(), and mStr.

+ Here is the call graph for this function: