XTE_ANY()

Defined in header
<xte/preproc/any.hpp>

Expands to 1 if anything is passed, otherwise expands to 0.


Definition

#define XTE_ANY(...) /* boolean integer literal */


Example

XTE_ANY()
XTE_ANY(abcdef)
Preprocessor output:
0
1
[View in Compiler Explorer]