XIEITE_EACH ()
Defined in header <xieite/pp/each.hpp>
Expands a given function-like macro with every argument passed.
Definition
#0Separates expanded expressions with commas.#define XIEITE_EACH (f ,... )/* ... */
#1
Separates expanded expressions with the provided#define XIEITE_EACH_DELIM (f ,delim ,... )/* ... */
delim
eter.If no callback is passed, avoids wrapping the expressions being iterated over in parentheses.
Example
Preprocessor output:#define M (x )x ##0 XIEITE_EACH_DELIM (M , +,1 ,2 ,3 )
[View in Compiler Explorer]10 +20 +30