C/C++: Who uses the logical operator macros from iso646.h and why?
- by Jaime Soto
There has been some debate at work about using the merits of using the alternative spellings for C/C++ logical operators in iso646.h:
and &&
and_eq &=
bitand &
bitor |
compl ~
not !
not_eq !=
or ||
or_eq |=
xor ^
xor_eq ^=
According to Wikipedia, these macros facilitate…