#include <Tuple.hh>
|
template<typename Func , typename Head , typename... Tail> |
static auto | forward (Func &&func, Head &&, Tail &&... tail) -> decltype(std::forward< Func >(func)(std::forward< Tail >(tail)...)) |
|
Definition at line 280 of file Tuple.hh.
◆ forward()
template<typename Func , typename Head , typename... Tail>
static auto PTL::ForwardTupleAsArgs< 0 >::forward |
( |
Func && |
func, |
|
|
Head && |
, |
|
|
Tail &&... |
tail |
|
) |
| -> decltype(std::forward<Func>(func)(std::forward<Tail>(tail)...))
|
|
inlinestatic |
Definition at line 283 of file Tuple.hh.
285 {
286 return std::forward<Func>(func)(std::forward<Tail>(tail)...);
287 }
The documentation for this struct was generated from the following file: