RAD Studio
ContentsIndex
PreviousUpNext
Alternative Representations of Tokens

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

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  
Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
What do you think about this topic? Send feedback!