std::slice_array<T>::operator=
| void operator=( const T& value ) const; | (1) | |
| void operator=( const std::valarray<T>& val_arr ) const; | (2) | |
| const slice_array& operator=( const slice_array& sl_arr) const; | (3) | (since C++11) | 
Assigns values to all referred elements.
1) Assigns 
 value to all of the elements.
2) Assigns the elements of 
 val_arr to the referred to elements of *this.
3) Assigns the selected elements from 
 sl_arr to the referred to elements of *this.Parameters
| value | - | a value to assign to all of the referred elements | 
| val_arr | - | std::valarrayto assign | 
| sl_arr | - | std::slice_arrayto assign | 
Return value
1-2) (none)
 
3) 
 *this
Exceptions
(none).
Example
    © cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
    http://en.cppreference.com/w/cpp/numeric/valarray/slice_array/operator=