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

◆ operator+() [7/8]

template<typename T>
fl::enable_if<!fl::is_arithmetic< T >::value, string >::type fl::operator+ ( const T & lhs,
const char * rhs )
inline

Definition at line 490 of file string.h.

490 {
491 string result;
492 result.append(lhs);
493 result += rhs;
494 return result;
495}
expected< T, E > result
Alias for expected (Rust-style naming)
Definition result.h:31

References FL_NOEXCEPT.