Lines Matching refs:lambda
1220 Dependent on the value, ``auto lambda []() { return 0; }`` can be put on a
1233 auto lambda = [](int a) {};
1239 Merge lambda into a single line if the lambda is argument of a function.
1243 auto lambda = [](int x, int y) {
1253 auto lambda = [](int a) {};
1757 * ``bool BeforeLambdaBody`` Wrap lambda block.
3537 The indentation style of lambda bodies. ``Signature`` (the default)
3538 causes the lambda body to be indented one additional level relative to
3539 the indentation level of the signature. ``OuterScope`` forces the lambda
3541 containing the lambda signature. For callback-heavy code, it may improve
3550 Align lambda body relative to the lambda signature. This is the default.
3560 Align lambda body relative to the indentation level of the outer scope
3561 the lambda signature resides in.