On Tuesday, 7 August 2012 at 16:11:05 UTC, Andrej Mitrovic wrote:
On 8/7/12, "Øivind" <oivind....@gmail.com> 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)

Works like a charm. Thanks!

The last one then becomes f(v0.expand, v1.expand)

Reply via email to