Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in fold-expression

"Uninitialized captured reference" error when using lambdas in fold expression - clang vs gcc

Fold expressions and empty parameters pack: what's the expected result?

Associativity of fold-expressions

Using fold expressions to print all variadic arguments with newlines inbetween

Test if all elements are equal with C++17 fold-expression

Clang and the binary fold expressions — The curse of the empty parameter pack

Can spaceship operator be used in fold expressions?

How to make grouped or paired fold of parameter pack?

Folding expressions in C++17 - Usecase for comparison operators

c++ c++17 fold-expression

Syntax issue when populating an array with a fold expression

c++ c++17 fold-expression

Is it legal to use an operator in a fold expression that was introduced by a using declaration?

Can I implement max(A, max(B, max(C, D))) using fold expressions?

Is there a reason to use std::conjunction/std::disjunction instead of a fold expression over "&&"/"||"?