XIEITE_NOT()

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

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


Definition

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


Example

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