if I have a function and I want to make a pointer to it with a specific parameter I can use auto but like this:
void bar(int n){std::cout << n;}
auto foo = std::bind(bar, 2);
but if I want to make a vector of these pointers it doesn't work
std::vector<auto> v;
std::function<void()>.automeans here?