aboutsummaryrefslogtreecommitdiff
path: root/share/misc/operator
diff options
context:
space:
mode:
authorRodney W. Grimes <rgrimes@FreeBSD.org>1994-05-30 19:09:18 +0000
committerRodney W. Grimes <rgrimes@FreeBSD.org>1994-05-30 19:09:18 +0000
commitafe61c15161c324a7af299a9b8457aba5afc92db (patch)
tree2ced81c11d3481fb1a4d3d832089bc744304b24e /share/misc/operator
parent9f23196c427eddb59bd454053a732e7cfebcb459 (diff)
Notes
Diffstat (limited to 'share/misc/operator')
-rw-r--r--share/misc/operator17
1 files changed, 17 insertions, 0 deletions
diff --git a/share/misc/operator b/share/misc/operator
new file mode 100644
index 000000000000..003c436d055f
--- /dev/null
+++ b/share/misc/operator
@@ -0,0 +1,17 @@
+Operator Associativity
+-----------------------------------------------
+() [] -> . left to right
+! ~ ++ -- - (type) * & sizeof 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
+?: right to left
+= += -= etc. right to left
+, left to right