https://issues.dlang.org/show_bug.cgi?id=15290
Ivan Kazmenko <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #1 from Ivan Kazmenko <[email protected]> --- Stumbled across this one, too: https://forum.dlang.org/post/[email protected] My use case is as follows: foreach (i; 0..10) foreach (j; 0..10) if (pred2 (i, j)) foreach (k; 0..10) if (pred3 (i, j, k)) ... and maybe more ... { auto set = [i: true, j: true; k: true]; if (set.length == 3) { ... we found distinct i, j, k, ... } } --
