This overload enables, when possible, lvalue return.
immutable p = 1, q = 2; assert(every(p, q) == 2); int x = 1, y = 2; every(x, y) = 3; assert(x == 1); assert(y == 3);
See Implementation
This overload enables, when possible, lvalue return.