Operators

and     &&
or      ||
not     !
not_eq  != 
bitand  &  (bit-wise and)
and_eq  &= (bit-wise and-assignment) 
bitor   |  (bit-wise or) 
or_eq   |= (bit-wise or-assignment) 
xor     ^  (bit-wise exclusive-or) 
xor_eq  ^= (bit-wise exclusive-or-assignment) 
compl   ~  (ones complement)



Subsections