User Tools

Site Tools


cpp:operators

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
cpp:operators [2017/04/11 06:18] gthanoscpp:operators [2024/04/24 09:51] (current) gthanos
Line 21: Line 21:
 |  7  | Bitwise shift   | ''%%<< >>%%''   | shift left, shift right   | Left-to-right  | |  7  | Bitwise shift   | ''%%<< >>%%''   | shift left, shift right   | Left-to-right  |
 |  8  | Relational   | ''%%< > <= >=%%''  | comparison operators   | Left-to-right  | |  8  | Relational   | ''%%< > <= >=%%''  | comparison operators   | Left-to-right  |
-|  9  | Equality   | == !=   | equality / inequality   | Left-to-right +|  9  | Equality   ''== !=''   | equality / inequality   | Left-to-right 
-| 10  | And   | &   | bitwise AND   | Left-to-right +| 10  | And   ''&''   | bitwise AND   | Left-to-right 
-| 11  | Exclusive or   | %%^%%   | bitwise XOR   | Left-to-right +| 11  | Exclusive or   ''%%^%%''   | bitwise XOR   | Left-to-right 
-| 12  | Inclusive or   | %%|%%  | bitwise OR   | Left-to-right +| 12  | Inclusive or   ''%%|%%''  | bitwise OR   | Left-to-right 
-| 13  | Conjunction    | &&  | logical AND  |  Left-to-right | +| 13  | Conjunction    | ''&&''  | logical AND  |  Left-to-right | 
-| 14  | Disjunction    | %%||%%  | logical OR   | Left-to-right +| 14  | Disjunction    | ''%%||%%''  | logical OR   | Left-to-right 
-| 15  | Assignment-level expressions   | %%= *= /= %= += -= >>= <<= &= ^= |=%% | assignment / compound assignment  | Right-to-left +| 15  | Assignment-level expressions   ''%%= *= /= %= += -= >>= <<= &= ^= |=%%'' | assignment / compound assignment  | Right-to-left 
-| ::: | ::: | ?:   | conditional operator | ::: | +| ::: | ::: | ''?:''   | conditional operator | ::: | 
-|16 | Sequencing   | ,   | comma separator   | Left-to-right  |+|16 | Sequencing   '',''   | comma separator   | Left-to-right  |
  
cpp/operators.1491891526.txt.gz · Last modified: 2017/04/11 05:18 (external edit)