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

◆ operator<<() [21/24]

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

Definition at line 10 of file strstream.cpp.

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

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

+ Here is the call graph for this function: