> In the file findIfLambda.cpp
> auto passingScore = [](int i){return i >= 70;};
> What is the type of passingScore?
>
passingScore is pointer to a function that returns boolean and accepts
integer as a parameter. That is, the above line can be rewritten as
follows:
bool (*passingScore)(int) = [](int i){return i >= 70;};
Thanks,
--
Mikhail