XIEITE_EACH()

Defined in header
<xieite/pp/each.hpp>

Expands a given function-like macro with every argument passed.


Definition

#0
#define XIEITE_EACH(f, ...) /* ... */
Separates expanded expressions with commas.

#1
#define XIEITE_EACH_DELIM(f, delim, ...) /* ... */
Separates expanded expressions with the provided delimeter.
If no callback is passed, avoids wrapping the expressions being iterated over in parentheses.


Example

#define M(x) x##0

XIEITE_EACH_DELIM(M, +, 1, 2, 3)
Preprocessor output:
10 + 20 + 30
[View in Compiler Explorer]