: The discussion of each built-in operator in
Clause
[expr] indicates the category of the value it yields and the value categories
of the operands it expects
. For example, the built-in assignment operators expect that
the left operand is an lvalue and that the right operand is a prvalue and yield an
lvalue as the result
. User-defined operators are functions, and the categories of
values they expect and yield are determined by their parameter and return types
. —
end note