|
typedef void(* | Signature) (A0, A1) |
|
typedef void(* | Function) (typename Parameters::template Parameter< A0, 0 >::Type, typename Parameters::template Parameter< A1, 1 >::Type) |
|
◆ ApplyVoidFunction()
template<typename Parameters , typename A0 , typename A1 >
376 :
377 function(function) {}
◆ apply()
template<typename Parameters , typename A0 , typename A1 >
template<typename Passed >
384 {
385 function(
386 (typename Parameters::template Parameter<A0, 0>()).template yield<Passed>(passed),
387 (typename Parameters::template Parameter<A1, 1>()).template yield<Passed>(passed));
388 }
◆ arity()
template<typename Parameters , typename A0 , typename A1 >
379 {
380 return 2;
381 }
The documentation for this class was generated from the following file: