Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Public Member Functions | List of all members
SkOverloadedFunctionObject< T, P > Struct Template Reference

#include <SkTemplates.h>

Public Member Functions

template<typename... Args>
auto operator() (Args &&... args) const -> decltype(P(std::forward< Args >(args)...))
 

Detailed Description

template<typename T, T * P>
struct SkOverloadedFunctionObject< T, P >

Definition at line 66 of file SkTemplates.h.

Member Function Documentation

◆ operator()()

template<typename T , T * P>
template<typename... Args>
auto SkOverloadedFunctionObject< T, P >::operator() ( Args &&...  args) const -> decltype(P(std::forward<Args>(args)...))
inline

Definition at line 68 of file SkTemplates.h.

68 {
69 return P(std::forward<Args>(args)...);
70 }
G_BEGIN_DECLS G_MODULE_EXPORT FlValue * args

The documentation for this struct was generated from the following file: