Syntax sugar for map + RefTuple combination
map
on top of ndslice composed of RefTuple
s recognises it and passes list of args instead of single tuple.
Old:
auto c = cartesian(a, b)
.map!"a.a + a.b";
New:
auto c = cartesian(a, b)
.map!"a + b";