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

◆ invoke() [3/3]

template<typename F, typename T1, typename... Args>
auto fl::invoke ( F && f,
T1 && t1,
Args &&... args ) -> enable_if_t<is_member_function_pointer<typename remove_reference<F>::type>::value && !detail::use_pointer_syntax<T1>::value, decltype((fl::forward<T1>(t1).*f)(fl::forward<Args>(args)...))>

Definition at line 49 of file functional.h.

53{
54 return (fl::forward<T1>(t1).*f)(fl::forward<Args>(args)...);
55}
constexpr T && forward(typename remove_reference< T >::type &t) noexcept
corkscrew_args args
Definition old.h:150

References args, forward(), and fl::integral_constant< bool, false >::value.

+ Here is the call graph for this function: