operator.7 (10b3b54548f2290bbe8d8f88c59c28d12b7a635d) operator.7 (c2965cd1854b75e6a13cb4bd6759b71adc8d2a87)
1.\" Copyright (c) 1989, 1990, 1993
2.\" The Regents of the University of California. All rights reserved.
3.\"
4.\" Redistribution and use in source and binary forms, with or without
5.\" modification, are permitted provided that the following conditions
6.\" are met:
7.\" 1. Redistributions of source code must retain the above copyright
8.\" notice, this list of conditions and the following disclaimer.

--- 31 unchanged lines hidden (view full) ---

40.Nd C and C++ operator precedence and order of evaluation
41.Sh DESCRIPTION
42.Bd -ragged -offset indent -compact
43.Bl -column "! ~ ++ -- - (type) * & sizeof new delete"
44.It Sy "Operator Associativity"
45.It "-------- -------------"
46.It "() [] -> . left to right"
47.It "! ~ ++ -- - (type) * & sizeof new delete right to left"
1.\" Copyright (c) 1989, 1990, 1993
2.\" The Regents of the University of California. All rights reserved.
3.\"
4.\" Redistribution and use in source and binary forms, with or without
5.\" modification, are permitted provided that the following conditions
6.\" are met:
7.\" 1. Redistributions of source code must retain the above copyright
8.\" notice, this list of conditions and the following disclaimer.

--- 31 unchanged lines hidden (view full) ---

40.Nd C and C++ operator precedence and order of evaluation
41.Sh DESCRIPTION
42.Bd -ragged -offset indent -compact
43.Bl -column "! ~ ++ -- - (type) * & sizeof new delete"
44.It Sy "Operator Associativity"
45.It "-------- -------------"
46.It "() [] -> . left to right"
47.It "! ~ ++ -- - (type) * & sizeof new delete right to left"
48.It "->* .* left to right
48.It "->* .* left to right"
49.It "* / % left to right"
50.It "+ - left to right"
51.It "<< >> left to right"
52.It "< <= > >= left to right"
53.It "== != left to right"
54.It "& left to right"
55.It "^ left to right"
56.It "| left to right"

--- 12 unchanged lines hidden ---
49.It "* / % left to right"
50.It "+ - left to right"
51.It "<< >> left to right"
52.It "< <= > >= left to right"
53.It "== != left to right"
54.It "& left to right"
55.It "^ left to right"
56.It "| left to right"

--- 12 unchanged lines hidden ---