XTE_NOT()

Defined in header
<xieite/preproc/not.hpp>

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


Definition

#define XTE_NOT(_x) /* ??? */


Example

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