Lambda 表达式

C++ 17(当前草案)介绍了 constexpr lambdas,基本上是 lambdas,可以在编译时进行评估。如果 lambda 满足 constexpr 要求,则 lambda 会自动 constexpr,但你也可以使用 constexpr 关键字指定它:

//Explicitly define this lambdas as constexpr
[]() constexpr {
    //Do stuff
}