Syntax sugar for map + RefTuple combination
map on top of ndslice composed of RefTuples 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";