Same as std.typetyple.staticMap, but passes two arguments to the first template.
Example
template Test(T...) { enum Test = T[0] && T[1]; } static assert([staticMap2!(Test, true, true, true, false)] == [true, false]);
See Implementation
Same as std.typetyple.staticMap, but passes two arguments to the first template.