Task.args

The arguments the function was called with. Changes to out and ref arguments will be visible here.

struct Task(alias fun, Args...)
static if(__traits(isSame, fun, run))
alias args = _args[1..$]

Meta