Comment #0 by dlang-bugzilla — 2024-05-07T09:16:37Z
Does not compile:
import std.algorithm.setops;
assert(cartesianProduct([1, 2], [3, 4]).length == 4);
Currently the code does:
return joiner(map!((ElementType!R1 a) => zip(repeat(a), range2.save))
(range1));
Comment #1 by robert.schadek — 2024-12-01T16:42:30Z