Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
int foo(int x);署名付きの関数、定義済みint operator()(int x);のファンクター、およびからのファンクターを含むことができるリストの作成方法std::bind1st。
int foo(int x);
int operator()(int x);
std::bind1st
使用するstd::list<std::function<int(int)>>
std::list<std::function<int(int)>>