Comment on Curious C++ Lambda Examples: Recursion, constexpr, Containers C++23 includedparentComments−mgaunard4yC++ lambdas behave exactly like functions in any other functional language.In OCaml, for example, you can't do recursion for the same reason without the special "let rec" construct.
Comments
C++ lambdas behave exactly like functions in any other functional language.
In OCaml, for example, you can't do recursion for the same reason without the special "let rec" construct.