On Monday, 27 February 2017 at 02:02:57 UTC, ag0aep6g wrote:
Make a range or an array of function pointers from the AliasSeq of function aliases:---- import std.meta: staticMap; import std.range: only; enum fptr(alias f) = &f; enum fptrs = staticMap!(fptr, funcs); auto r = only(fptrs); foreach (i, f; parallel(r)) values[i] = f(val); ----
Wow. Thank you!