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

◆ operator<<() [24/24]

template<typename T>
fl::enable_if< fl::is_same< T, fl::size >::value||fl::is_same< T, fl::u16 >::value||fl::is_same< T, int >::value, StrStream & >::type fl::StrStream::operator<< ( T n)
inline

Definition at line 217 of file strstream.h.

217 {
219 mStr.append(fl::i32(n));
220 } else {
221 mStr.append(fl::u32(n));
222 }
223 return *this;
224 }
static constexpr bool value
Definition type_traits.h:84

References mStr, and fl::is_same< T, U >::value.