Strange “->* []” expression in C++ source code of cpp.react library
The only example on the linked page where I see ->* is this: auto in = D::MakeVar(0); auto op1 = in ->* [] (int in) { int result = in /* Costly operation #1 */; return result; }; auto op2 = in ->* [] (int in) { int result = in /* Costly operation #2 … Read more