This page is a snapshot from the LWG issues list, see the Library Active Issues List for more information and the meaning of NAD status.
operator+= (initializer_list<T>)
for valarray
Section: 29.6.2.7 [valarray.cassign] Status: NAD Submitter: Daniel Krügler Opened: 2009-10-22 Last modified: 2016-01-28
Priority: Not Prioritized
View all other issues in [valarray.cassign].
View all issues with NAD status.
Discussion:
Addresses JP 64
During the additions of initializer_list
overloads
basic_string
added:
basic_string& operator+=(initializer_list<charT>);
but
valarray<T>& operator+= (initializer_list<T>);
was not defined.
[ Daniel adds on opening: ]
Recommend NAD. The
operator+=
overload ofbasic_string
behaves as-if callingappend
, which is completely different in meaning as the existingoperator+=
overloads invalarray
which just sum the value or values to the existing elements. The suggestion to add a corresponding append function tovalarray
was not considered as appropriate and the request was withdrawn (c++std-lib-24968).
[ 2009-10 Santa Cruz: ]
Mark as NAD. Request has been withdrawn by NB.
Proposed resolution:
Add to 29.6.2.7 [valarray.cassign]:
valarray<T>& operator+= (initializer_list<T>);