From 15aba21762db566264aef3f0ac15a65c639f59f7 Mon Sep 17 00:00:00 2001 From: fanf Date: Wed, 22 Jan 2003 15:19:07 +0000 Subject: List all of the assignment operators explicitly, for those who have been traumatized by perl. --- share/man/man7/operator.7 | 4 ++-- share/misc/operator | 36 +++++++++++++++++++----------------- 2 files changed, 21 insertions(+), 19 deletions(-) (limited to 'share') diff --git a/share/man/man7/operator.7 b/share/man/man7/operator.7 index 2f67448..ef6cb6d 100644 --- a/share/man/man7/operator.7 +++ b/share/man/man7/operator.7 @@ -40,7 +40,7 @@ .Nd C operator precedence and order of evaluation .Sh DESCRIPTION .Bd -ragged -offset indent -compact -.Bl -column "! ~ ++ -- - (type) * & sizeof" +.Bl -column "\&= += -= *= /= %= <<= >>= &= ^= |=" .It Sy "Operator Associativity" .It "-------- -------------" .It "\&() [] -> . left to right" @@ -56,7 +56,7 @@ .It "\&&& left to right" .It "\&|| left to right" .It "\&?: right to left" -.It "\&= += -= etc. right to left" +.It "\&= += -= *= /= %= <<= >>= &= ^= |= right to left" .It "\&, left to right" .El .Ed diff --git a/share/misc/operator b/share/misc/operator index 003c436..b293f31 100644 --- a/share/misc/operator +++ b/share/misc/operator @@ -1,17 +1,19 @@ -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 +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 += += -= *= /= %= <<= >>= &= ^= |= right to left +, left to right + +$FreeBSD$ -- cgit v1.1