-
-
Notifications
You must be signed in to change notification settings - Fork 262
Closed
Labels
bugSomething isn't workingSomething isn't working
Description
Similar to #91, but for other operators.
auto f = [](auto... i) { return (.../i); }; // (__i0 / __i1 / __i2)
auto g = [](auto... i) { return (i/...); }; // (__i0 / __i1 / __i2) also
f(1,2,3);
g(1,2,3);Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working