/share/misc/operator
https://bitbucket.org/freebsd/freebsd-head/ · #! · 21 lines · 20 code · 1 blank · 0 comment · 0 complexity · 342b18db29b5d12dd4f7d2641d2972bc MD5 · raw file
- Operator Associativity
- -------------------------------------------------------------
- () [] -> . left to right
- ! ~ ++ -- - (type) * & sizeof new delete right to left
- ->* .* left to right
- * / % left to right
- + - left to right
- << >> left to right
- < <= > >= left to right
- == != left to right
- & left to right
- ^ left to right
- | left to right
- && left to right
- || left to right
- ?: right to left
- = += -= *= /= %= <<= >>= &= ^= |= throw right to left
- ?: (C++, third operand) right to left
- , left to right
- $FreeBSD$