Will vector<int> be copied when f[0] is called?
#include <bits/stdc++.h>
using namespace std;
signed main() {
vector<function<void(const vector<int>)>> f = {
[&] (const vector<int>& v) -> void {
}
};
}
Spoiler



