XTE_COMPL()

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

Inverts a boolean integer literal; Expands to 1 if 0 is passed and expands to 0 if 1 is passed.


Definition

#define XTE_COMPL(_b) /* ??? */


Example

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