On 8/7/12, "Øivind" <[email protected]> wrote: > How can I call this function with an already-constructed tuple > but pass the pule as an expressiontuple? > > auto v = tuple(1, 2, 3); > f(v);
Use the .expand property: f(v.expand)
On 8/7/12, "Øivind" <[email protected]> wrote: > How can I call this function with an already-constructed tuple > but pass the pule as an expressiontuple? > > auto v = tuple(1, 2, 3); > f(v);
Use the .expand property: f(v.expand)