Home | History | Annotate | Line # | Download | only in misc
operator revision 1.4
      1  1.4  uwe Operator					Associativity
      2  1.4  uwe -------------------------------------------------------------
      3  1.4  uwe () [] -> .					left to right
      4  1.4  uwe ! ~ ++ -- - (type) * & sizeof new delete	right to left
      5  1.4  uwe ->* .*						left to right
      6  1.4  uwe * / %						left to right
      7  1.4  uwe + -						left to right
      8  1.4  uwe << >>						left to right
      9  1.4  uwe < <= > >=					left to right
     10  1.4  uwe == !=						left to right
     11  1.4  uwe &						left to right
     12  1.4  uwe ^						left to right
     13  1.4  uwe |						left to right
     14  1.4  uwe &&						left to right
     15  1.4  uwe ||						left to right
     16  1.4  uwe ?:						right to left
     17  1.4  uwe = += -= *= /= %= <<= >>= &= ^= |= throw		right to left
     18  1.4  uwe ?: (C++, third operand)				right to left
     19  1.4  uwe ,						left to right
     20