operator revision 109684
1109684SfanfOperator				Associativity
2109684Sfanf-----------------------------------------------------
3109684Sfanf() [] -> .				left to right
4109684Sfanf! ~ ++ -- - (type) * & sizeof		right to left
5109684Sfanf* / %					left to right
6109684Sfanf+ -					left to right
7109684Sfanf<< >>					left to right
8109684Sfanf< <= > >=				left to right
9109684Sfanf== !=					left to right
10109684Sfanf&					left to right
11109684Sfanf^					left to right
12109684Sfanf|					left to right
13109684Sfanf&&					left to right
14109684Sfanf||					left to right
15109684Sfanf?:					right to left
16109684Sfanf= += -= *= /= %= <<= >>= &= ^= |=	right to left
17109684Sfanf,					left to right
18109684Sfanf
19109684Sfanf$FreeBSD: head/share/misc/operator 109684 2003-01-22 15:19:07Z fanf $
20