How many arguments does bind take
belongs to book: C++ Primer|Stanley B.Lippman, Josee Lajoie, Barbara E.Moo|5th Edition| Chapter number:10| Question number:23
All Answers
total answers (1)
belongs to book: C++ Primer|Stanley B.Lippman, Josee Lajoie, Barbara E.Moo|5th Edition| Chapter number:10| Question number:23
total answers (1)
The number of arguments that
`bind`
takes depends on the callable it binds to. It is equal to how many arguments the original callable takes plus one (which is the original callable itself).