The OpenD Programming Language

Task.ReturnType

The return type of the function called by this Task. This can be void.

import std.parallelism;
struct Task(alias fun, Args...)
alias ReturnType = typeof(fun(_args))

Meta