Should I make reference for a lambda to avoid copying it?
Will this code make a copy of the lambda:
auto myLambda = []() {/* do stuff */ }
and if yes, should I write it like this:
auto &myLambda = []() {/* do stuff */ }
P.S. Please sorry for a possibly newbie question, googled, but didn't find answer.