Alternative Representations of Tokens (C++)

From RAD Studio
Jump to: navigation, search

Go Up to Keywords, By Category Index

This section contains topics about alternative representations of C++ tokens.

Keyword Topics

The following table summarizes the alternative representation keywords and the token that each keyword represents:


Keyword, Alternative Representation Token Represented Definition

and, &&

&&

Logical AND

and_eq, &=

&=

Assignment by bitwise AND

bitand, &

&

Bitwise AND

bitor, |

|

Bitwise OR

compl, ~

~

Bitwise NOT (bitwise one's complement)

not, !

!

Logical negation

not_eq, !=

!=

Bitwise inequality

or, ||

||

Logical OR

or_eq, |=

|=

Bitwise inclusive OR

xor, ^

^

Bitwise exclusive OR

xor_eq, ^=

^=

Bitwise XOR assignment

See Also