Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Public Types | Public Member Functions | Public Attributes | List of all members
tonic::DartDispatcher< IndicesHolder< indices... >, void(*)(ArgTypes...)> Struct Template Reference

#include <dart_args.h>

Inheritance diagram for tonic::DartDispatcher< IndicesHolder< indices... >, void(*)(ArgTypes...)>:
tonic::DartArgHolder< indices, ArgTypes >

Public Types

using FunctionPtr = void(*)(ArgTypes...)
 
- Public Types inherited from tonic::DartArgHolder< indices, ArgTypes >
using ValueType = typename std::remove_const< typename std::remove_reference< ArgTypes >::type >::type
 

Public Member Functions

 DartDispatcher (DartArgIterator *it)
 
void Dispatch (FunctionPtr func)
 
- Public Member Functions inherited from tonic::DartArgHolder< indices, ArgTypes >
 DartArgHolder (DartArgIterator *it)
 

Public Attributes

DartArgIteratorit_
 
- Public Attributes inherited from tonic::DartArgHolder< indices, ArgTypes >
ValueType value
 

Detailed Description

template<size_t... indices, typename... ArgTypes>
struct tonic::DartDispatcher< IndicesHolder< indices... >, void(*)(ArgTypes...)>

Definition at line 109 of file dart_args.h.

Member Typedef Documentation

◆ FunctionPtr

template<size_t... indices, typename... ArgTypes>
using tonic::DartDispatcher< IndicesHolder< indices... >, void(*)(ArgTypes...)>::FunctionPtr = void (*)(ArgTypes...)

Definition at line 111 of file dart_args.h.

Constructor & Destructor Documentation

◆ DartDispatcher()

template<size_t... indices, typename... ArgTypes>
tonic::DartDispatcher< IndicesHolder< indices... >, void(*)(ArgTypes...)>::DartDispatcher ( DartArgIterator it)
inlineexplicit

Definition at line 115 of file dart_args.h.

116 : DartArgHolder<indices, ArgTypes>(it)..., it_(it) {}

Member Function Documentation

◆ Dispatch()

template<size_t... indices, typename... ArgTypes>
void tonic::DartDispatcher< IndicesHolder< indices... >, void(*)(ArgTypes...)>::Dispatch ( FunctionPtr  func)
inline

Definition at line 118 of file dart_args.h.

118 {
119 (*func)(DartArgHolder<indices, ArgTypes>::value...);
120 }

Member Data Documentation

◆ it_

template<size_t... indices, typename... ArgTypes>
DartArgIterator* tonic::DartDispatcher< IndicesHolder< indices... >, void(*)(ArgTypes...)>::it_

Definition at line 113 of file dart_args.h.


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