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

◆ forward() [1/2]

template<typename T>
T && fl::forward ( typename remove_reference< T >::type && t)
constexprnoexcept

Definition at line 219 of file type_traits.h.

219 {
220 static_assert(!is_lvalue_reference<T>::value,
221 "Cannot forward an rvalue as an lvalue");
222 return static_cast<T &&>(t);
223}
static uint32_t t
Definition Luminova.h:54
static constexpr bool value

References t, and fl::is_lvalue_reference< T >::value.