1190855SedOperator					Associativity
2190855Sed-------------------------------------------------------------
3190855Sed() [] -> .					left to right
4190855Sed! ~ ++ -- - (type) * & sizeof new delete	right to left
5190855Sed->* .*						left to right
6190855Sed* / %						left to right
7190855Sed+ -						left to right
8190855Sed<< >>						left to right
9190855Sed< <= > >=					left to right
10190855Sed== !=						left to right
11190855Sed&						left to right
12190855Sed^						left to right
13190855Sed|						left to right
14190855Sed&&						left to right
15190855Sed||						left to right
16190855Sed?:						right to left
17190855Sed= += -= *= /= %= <<= >>= &= ^= |= throw		right to left
18190855Sed?: (C++, third operand)				right to left
19190855Sed,						left to right
20109684Sfanf
21109684Sfanf$FreeBSD$
22