int a = 3;
auto f = [a] (int a) { return a > a; }
Q:capture the local variable names a
and lambda have a differentiated method?
I think it is within the scope of a parametric a
is independent of the external local variables a
, would like to know whether there is something like this pointer distinction.