I wonder if it's possible to write a function that returns a lambda function in C++11. Of course one problem is how to declare such function. Each lambda has a type, but that type is not expressible in C++. I don't think this would work:
auto retFun() -> decltype ([](int x) -> int)
{
return [](int x) { return x; }
}
Nor this:
int(int) retFun();
I'm not aware of any automatic conversions from lambdas to, say, pointers to functions, or some such. Is the only solution handcrafting a function object and returning it?
decltype
isn't the same as in the function body and therefore has a different type (even if you included the return statement) – Subtotaldecltype([](){})
orsizeof([]() {})
is ill-formed no matter where you write it. – Tellurian+
operator to convert a lambda to a function pointer. – Lemay