$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Howard Hinnant (hinnant_at_[hidden])
Date: 2004-07-25 13:30:44
On Jul 25, 2004, at 1:29 PM, Rob Stewart wrote:
> From: Howard Hinnant <hinnant_at_[hidden]>
>>
>> try_move has been dumped in favor of overloaded |= and <<= operators.
>> This does not mean that I'm set on these operators, or that ~= or %=
>> wouldn't be better as Rob suggests. Just there were getting to be so
>> many changes, I wanted to get a new spec up.
>
> The good news, in case no one else considered it, is that the
> precedence of any of the X= operators is very low, so you can
> take your pick on esthetic grounds alone.
The bad news is that ~= isn't really available. ;-)
Here's the full list to peruse:
=
+=
-=
*=
/=
%=
^=
&=
|=
>>=
<<=
-Howard