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 195 of file type_traits.h.

195 {
196 static_assert(!is_lvalue_reference<T>::value,
197 "Cannot forward an rvalue as an lvalue");
198 return static_cast<T &&>(t);
199}
static constexpr bool value

References fl::is_lvalue_reference< T >::value.