|
related |
Creates a kumi::tuple of forwarding references to its arguments.
Constructs a tuple of references to the arguments in args suitable for forwarding as an argument to a function. The tuple has rvalue reference data members when rvalues are used as arguments, and otherwise has lvalue reference data members.
forward_as_tuple
does not extend their lifetime; they have to be used before the end of the full expression.ts | Zero or more lvalue arguments to construct the tuple from. |
kumi::tuple<Ts&&...>(std::forward<Ts>(args)...)