libstdc++
|
Classes and functions for representing and manipulating arrays of elements.
std::gslice::gslice | ( | ) | [inline] |
std::gslice::gslice | ( | size_t | __o, |
const valarray< size_t > & | __l, | ||
const valarray< size_t > & | __s | ||
) | [inline] |
std::gslice::gslice | ( | const gslice & | __g | ) | [inline] |
std::gslice_array< _Tp >::gslice_array | ( | const gslice_array< _Tp > & | __a | ) | [inline] |
Copy constructor. Both slices refer to the same underlying array.
Definition at line 144 of file gslice_array.h.
std::indirect_array< _Tp >::indirect_array | ( | const indirect_array< _Tp > & | __a | ) | [inline] |
Copy constructor. Both slices refer to the same underlying array.
Definition at line 144 of file indirect_array.h.
std::mask_array< _Tp >::mask_array | ( | const mask_array< _Tp > & | a | ) | [inline] |
Copy constructor. Both slices refer to the same underlying array.
Definition at line 140 of file mask_array.h.
std::slice::slice | ( | ) | [inline] |
Construct an empty slice.
Definition at line 91 of file slice_array.h.
std::slice::slice | ( | size_t | __o, |
size_t | __d, | ||
size_t | __s | ||
) | [inline] |
Construct a slice.
__o | Offset in array of first element. |
__d | Number of elements in slice. |
__s | Stride between array elements. |
Definition at line 95 of file slice_array.h.
std::slice_array< _Tp >::slice_array | ( | const slice_array< _Tp > & | a | ) | [inline] |
Copy constructor. Both slices refer to the same underlying array.
Definition at line 208 of file slice_array.h.
std::valarray< _Tp >::valarray | ( | ) | [inline] |
std::valarray< _Tp >::valarray | ( | size_t | __n | ) | [inline, explicit] |
std::valarray< _Tp >::valarray | ( | const _Tp & | __t, |
size_t | __n | ||
) | [inline] |
std::valarray< _Tp >::valarray | ( | const valarray< _Tp > & | __v | ) | [inline] |
std::valarray< _Tp >::valarray | ( | valarray< _Tp > && | __v | ) | [inline] |
std::valarray< _Tp >::valarray | ( | const slice_array< _Tp > & | __sa | ) | [inline] |
std::valarray< _Tp >::valarray | ( | const gslice_array< _Tp > & | __ga | ) | [inline] |
std::valarray< _Tp >::valarray | ( | const mask_array< _Tp > & | __ma | ) | [inline] |
std::valarray< _Tp >::valarray | ( | const indirect_array< _Tp > & | __ia | ) | [inline] |
std::valarray< _Tp >::valarray | ( | initializer_list< _Tp > | __l | ) | [inline] |
Construct an array with an initializer_list of values.
std::gslice::~gslice | ( | ) | [inline] |
_Expr< _ValFunClos< _ValArray, _Tp >, _Tp > std::valarray< _Tp >::apply | ( | _Tp | func_Tp | ) | const [inline] |
Apply a function to the array.
Returns a new valarray with elements assigned to the result of applying func to the corresponding element of this array. The new array has the same size as this one.
func | Function of Tp returning Tp to apply. |
_Expr< _RefFunClos< _ValArray, _Tp >, _Tp > std::valarray< _Tp >::apply | ( | _Tp | funcconst _Tp & | ) | const [inline] |
Apply a function to the array.
Returns a new valarray with elements assigned to the result of applying func to the corresponding element of this array. The new array has the same size as this one.
func | Function of const Tp& returning Tp to apply. |
_Tp* std::begin | ( | valarray< _Tp > & | __va | ) | [inline] |
Return an iterator pointing to the first element of the valarray.
__va | valarray. |
Definition at line 1185 of file valarray.
References std::__addressof().
const _Tp* std::begin | ( | const valarray< _Tp > & | __va | ) | [inline] |
Return an iterator pointing to the first element of the const valarray.
__va | valarray. |
Definition at line 1195 of file valarray.
References std::__addressof().
valarray< _Tp > std::valarray< _Tp >::cshift | ( | int | __n | ) | const [inline] |
Return a rotated array.
A new valarray is constructed as a copy of this array with elements in shifted positions. For an element with index i, the new position is (i - n) % size(). The new valarray has the same size as the current one. Elements that are shifted beyond the array bounds are shifted into the other end of the array. No elements are lost.
Positive arguments shift toward index 0, wrapping around the top. Negative arguments shift towards the top, wrapping around to 0.
__n | Number of element positions to rotate. |
_Tp* std::end | ( | valarray< _Tp > & | __va | ) | [inline] |
Return an iterator pointing to one past the last element of the valarray.
__va | valarray. |
Definition at line 1205 of file valarray.
References std::__addressof(), and std::valarray< _Tp >::size().
const _Tp* std::end | ( | const valarray< _Tp > & | __va | ) | [inline] |
Return an iterator pointing to one past the last element of the const valarray.
__va | valarray. |
Definition at line 1215 of file valarray.
References std::__addressof(), and std::valarray< _Tp >::size().
_Tp std::valarray< _Tp >::max | ( | ) | const [inline] |
Return the maximum element using operator<().
Definition at line 1030 of file valarray.
References std::max_element().
_Tp std::valarray< _Tp >::min | ( | ) | const [inline] |
Return the minimum element using operator<().
Definition at line 1022 of file valarray.
References std::min_element().
valarray< _Tp >::template _UnaryOp< __logical_not >::_Rt std::valarray< _Tp >::operator! | ( | ) | const [inline] |
void std::gslice_array< _Tp >::operator%= | ( | const valarray< _Tp > & | __v | ) | const [inline] |
Modulo slice elements by corresponding elements of v.
Definition at line 203 of file gslice_array.h.
void std::mask_array< _Tp >::operator%= | ( | const valarray< _Tp > & | __v | ) | const [inline] |
Modulo slice elements by corresponding elements of v.
Definition at line 193 of file mask_array.h.
void std::indirect_array< _Tp >::operator%= | ( | const valarray< _Tp > & | __v | ) | const [inline] |
Modulo slice elements by corresponding elements of v.
Definition at line 197 of file indirect_array.h.
void std::slice_array< _Tp >::operator%= | ( | const valarray< _Tp > & | __v | ) | const [inline] |
Modulo slice elements by corresponding elements of v.
Definition at line 259 of file slice_array.h.
valarray< _Tp > & std::valarray< _Tp >::operator%= | ( | const _Tp & | __t | ) | [inline] |
valarray< _Tp > & std::valarray< _Tp >::operator%= | ( | const valarray< _Tp > & | __v | ) | [inline] |
void std::gslice_array< _Tp >::operator&= | ( | const valarray< _Tp > & | __v | ) | const [inline] |
Logical and slice elements with corresponding elements of v.
Definition at line 207 of file gslice_array.h.
void std::mask_array< _Tp >::operator&= | ( | const valarray< _Tp > & | __v | ) | const [inline] |
Logical and slice elements with corresponding elements of v.
Definition at line 197 of file mask_array.h.
void std::indirect_array< _Tp >::operator&= | ( | const valarray< _Tp > & | __v | ) | const [inline] |
Logical and slice elements with corresponding elements of v.
Definition at line 201 of file indirect_array.h.
void std::slice_array< _Tp >::operator&= | ( | const valarray< _Tp > & | __v | ) | const [inline] |
Logical and slice elements with corresponding elements of v.
Definition at line 263 of file slice_array.h.
valarray< _Tp > & std::valarray< _Tp >::operator&= | ( | const _Tp & | __t | ) | [inline] |
valarray< _Tp > & std::valarray< _Tp >::operator&= | ( | const valarray< _Tp > & | __v | ) | [inline] |
void std::gslice_array< _Tp >::operator*= | ( | const valarray< _Tp > & | __v | ) | const [inline] |
Multiply slice elements by corresponding elements of v.
Definition at line 201 of file gslice_array.h.
void std::mask_array< _Tp >::operator*= | ( | const valarray< _Tp > & | __v | ) | const [inline] |
Multiply slice elements by corresponding elements of v.
Definition at line 191 of file mask_array.h.
void std::indirect_array< _Tp >::operator*= | ( | const valarray< _Tp > & | __v | ) | const [inline] |
Multiply slice elements by corresponding elements of v.
Definition at line 195 of file indirect_array.h.
void std::slice_array< _Tp >::operator*= | ( | const valarray< _Tp > & | __v | ) | const [inline] |
Multiply slice elements by corresponding elements of v.
Definition at line 257 of file slice_array.h.
valarray< _Tp > & std::valarray< _Tp >::operator*= | ( | const _Tp & | __t | ) | [inline] |
valarray< _Tp > & std::valarray< _Tp >::operator*= | ( | const valarray< _Tp > & | __v | ) | [inline] |
valarray< _Tp >::template _UnaryOp< __unary_plus >::_Rt std::valarray< _Tp >::operator+ | ( | ) | const [inline] |
void std::gslice_array< _Tp >::operator+= | ( | const valarray< _Tp > & | __v | ) | const [inline] |
Add corresponding elements of v to slice elements.
Definition at line 204 of file gslice_array.h.
void std::mask_array< _Tp >::operator+= | ( | const valarray< _Tp > & | __v | ) | const [inline] |
Add corresponding elements of v to slice elements.
Definition at line 194 of file mask_array.h.
void std::indirect_array< _Tp >::operator+= | ( | const valarray< _Tp > & | __v | ) | const [inline] |
Add corresponding elements of v to slice elements.
Definition at line 198 of file indirect_array.h.
void std::slice_array< _Tp >::operator+= | ( | const valarray< _Tp > & | __v | ) | const [inline] |
Add corresponding elements of v to slice elements.
Definition at line 260 of file slice_array.h.
valarray< _Tp > & std::valarray< _Tp >::operator+= | ( | const _Tp & | __t | ) | [inline] |
valarray< _Tp > & std::valarray< _Tp >::operator+= | ( | const valarray< _Tp > & | __v | ) | [inline] |
valarray< _Tp >::template _UnaryOp< __negate >::_Rt std::valarray< _Tp >::operator- | ( | ) | const [inline] |
void std::gslice_array< _Tp >::operator-= | ( | const valarray< _Tp > & | __v | ) | const [inline] |
Subtract corresponding elements of v from slice elements.
Definition at line 205 of file gslice_array.h.
void std::mask_array< _Tp >::operator-= | ( | const valarray< _Tp > & | __v | ) | const [inline] |
Subtract corresponding elements of v from slice elements.
Definition at line 195 of file mask_array.h.
void std::indirect_array< _Tp >::operator-= | ( | const valarray< _Tp > & | __v | ) | const [inline] |
Subtract corresponding elements of v from slice elements.
Definition at line 199 of file indirect_array.h.
void std::slice_array< _Tp >::operator-= | ( | const valarray< _Tp > & | __v | ) | const [inline] |
Subtract corresponding elements of v from slice elements.
Definition at line 261 of file slice_array.h.
valarray< _Tp > & std::valarray< _Tp >::operator-= | ( | const _Tp & | __t | ) | [inline] |
valarray< _Tp > & std::valarray< _Tp >::operator-= | ( | const valarray< _Tp > & | __v | ) | [inline] |
void std::gslice_array< _Tp >::operator/= | ( | const valarray< _Tp > & | __v | ) | const [inline] |
Divide slice elements by corresponding elements of v.
Definition at line 202 of file gslice_array.h.
void std::mask_array< _Tp >::operator/= | ( | const valarray< _Tp > & | __v | ) | const [inline] |
Divide slice elements by corresponding elements of v.
Definition at line 192 of file mask_array.h.
void std::indirect_array< _Tp >::operator/= | ( | const valarray< _Tp > & | __v | ) | const [inline] |
Divide slice elements by corresponding elements of v.
Definition at line 196 of file indirect_array.h.
void std::slice_array< _Tp >::operator/= | ( | const valarray< _Tp > & | __v | ) | const [inline] |
Divide slice elements by corresponding elements of v.
Definition at line 258 of file slice_array.h.
valarray< _Tp > & std::valarray< _Tp >::operator/= | ( | const _Tp & | __t | ) | [inline] |
valarray< _Tp > & std::valarray< _Tp >::operator/= | ( | const valarray< _Tp > & | __v | ) | [inline] |
void std::gslice_array< _Tp >::operator<<= | ( | const valarray< _Tp > & | __v | ) | const [inline] |
Left shift slice elements by corresponding elements of v.
Definition at line 209 of file gslice_array.h.
void std::mask_array< _Tp >::operator<<= | ( | const valarray< _Tp > & | __v | ) | const [inline] |
Left shift slice elements by corresponding elements of v.
Definition at line 199 of file mask_array.h.
void std::indirect_array< _Tp >::operator<<= | ( | const valarray< _Tp > & | __v | ) | const [inline] |
Left shift slice elements by corresponding elements of v.
Definition at line 203 of file indirect_array.h.
void std::slice_array< _Tp >::operator<<= | ( | const valarray< _Tp > & | __v | ) | const [inline] |
Left shift slice elements by corresponding elements of v.
Definition at line 265 of file slice_array.h.
valarray< _Tp > & std::valarray< _Tp >::operator<<= | ( | const _Tp & | __t | ) | [inline] |
valarray< _Tp > & std::valarray< _Tp >::operator<<= | ( | const valarray< _Tp > & | __v | ) | [inline] |
gslice_array< _Tp > & std::gslice_array< _Tp >::operator= | ( | const gslice_array< _Tp > & | __a | ) | [inline] |
Assignment operator. Assigns slice elements to corresponding elements of a.
Definition at line 149 of file gslice_array.h.
indirect_array< _Tp > & std::indirect_array< _Tp >::operator= | ( | const indirect_array< _Tp > & | __a | ) | [inline] |
Assignment operator. Assigns elements to corresponding elements of a.
Definition at line 155 of file indirect_array.h.
mask_array< _Tp > & std::mask_array< _Tp >::operator= | ( | const mask_array< _Tp > & | __a | ) | [inline] |
Assignment operator. Assigns elements to corresponding elements of a.
Definition at line 150 of file mask_array.h.
void std::gslice_array< _Tp >::operator= | ( | const valarray< _Tp > & | __v | ) | const [inline] |
Assign slice elements to corresponding elements of v.
Definition at line 167 of file gslice_array.h.
References std::valarray< _Tp >::size().
void std::indirect_array< _Tp >::operator= | ( | const valarray< _Tp > & | __v | ) | const [inline] |
Assign slice elements to corresponding elements of v.
Definition at line 169 of file indirect_array.h.
gslice & std::gslice::operator= | ( | const gslice & | __g | ) | [inline] |
void std::gslice_array< _Tp >::operator= | ( | const _Tp & | __t | ) | const [inline] |
Assign all slice elements to t.
Definition at line 159 of file gslice_array.h.
void std::mask_array< _Tp >::operator= | ( | const _Tp & | __t | ) | const [inline] |
Assign all slice elements to t.
Definition at line 159 of file mask_array.h.
void std::indirect_array< _Tp >::operator= | ( | const _Tp & | __t | ) | const [inline] |
Assign all slice elements to t.
Definition at line 164 of file indirect_array.h.
slice_array< _Tp > & std::slice_array< _Tp >::operator= | ( | const slice_array< _Tp > & | __a | ) | [inline] |
Assignment operator. Assigns slice elements to corresponding elements of a.
Definition at line 216 of file slice_array.h.
void std::slice_array< _Tp >::operator= | ( | const valarray< _Tp > & | __v | ) | const [inline] |
Assign slice elements to corresponding elements of v.
Definition at line 230 of file slice_array.h.
void std::slice_array< _Tp >::operator= | ( | const _Tp & | __t | ) | const [inline] |
Assign all slice elements to t.
Definition at line 225 of file slice_array.h.
valarray< _Tp > & std::valarray< _Tp >::operator= | ( | const valarray< _Tp > & | __v | ) | [inline] |
valarray< _Tp > & std::valarray< _Tp >::operator= | ( | valarray< _Tp > && | __v | ) | [inline] |
valarray< _Tp > & std::valarray< _Tp >::operator= | ( | const _Tp & | __t | ) | [inline] |
valarray< _Tp > & std::valarray< _Tp >::operator= | ( | const slice_array< _Tp > & | __sa | ) | [inline] |
valarray< _Tp > & std::valarray< _Tp >::operator= | ( | const gslice_array< _Tp > & | __ga | ) | [inline] |
Assign elements to an array subset.
Assign elements of array to values in ga. Results are undefined if ga does not have the same size as this array.
__ga | Array slice to get values from. |
Definition at line 792 of file valarray.
References std::valarray< _Tp >::size().
valarray< _Tp > & std::valarray< _Tp >::operator= | ( | const mask_array< _Tp > & | __ma | ) | [inline] |
valarray< _Tp > & std::valarray< _Tp >::operator= | ( | const indirect_array< _Tp > & | __ia | ) | [inline] |
valarray< _Tp > & std::valarray< _Tp >::operator= | ( | initializer_list< _Tp > | __l | ) | [inline] |
Assign elements to an initializer_list.
Assign elements of array to values in __l. Results are undefined if __l does not have the same size as this array.
__l | initializer_list to get values from. |
void std::gslice_array< _Tp >::operator>>= | ( | const valarray< _Tp > & | __v | ) | const [inline] |
Right shift slice elements by corresponding elements of v.
Definition at line 210 of file gslice_array.h.
void std::mask_array< _Tp >::operator>>= | ( | const valarray< _Tp > & | __v | ) | const [inline] |
Right shift slice elements by corresponding elements of v.
Definition at line 200 of file mask_array.h.
void std::indirect_array< _Tp >::operator>>= | ( | const valarray< _Tp > & | __v | ) | const [inline] |
Right shift slice elements by corresponding elements of v.
Definition at line 204 of file indirect_array.h.
void std::slice_array< _Tp >::operator>>= | ( | const valarray< _Tp > & | __v | ) | const [inline] |
Right shift slice elements by corresponding elements of v.
Definition at line 266 of file slice_array.h.
valarray< _Tp > & std::valarray< _Tp >::operator>>= | ( | const _Tp & | __t | ) | [inline] |
valarray< _Tp > & std::valarray< _Tp >::operator>>= | ( | const valarray< _Tp > & | __v | ) | [inline] |
_Tp & std::valarray< _Tp >::operator[] | ( | size_t | __i | ) | [inline] |
_Expr< _SClos< _ValArray, _Tp >, _Tp > std::valarray< _Tp >::operator[] | ( | slice | __s | ) | const [inline] |
Return an array subset.
Returns a new valarray containing the elements of the array indicated by the slice argument. The new valarray has the same size as the input slice.
__s | The source slice. |
slice_array< _Tp > std::valarray< _Tp >::operator[] | ( | slice | __s | ) | [inline] |
Return a reference to an array subset.
Returns a new valarray containing the elements of the array indicated by the slice argument. The new valarray has the same size as the input slice.
__s | The source slice. |
_Expr< _GClos< _ValArray, _Tp >, _Tp > std::valarray< _Tp >::operator[] | ( | const gslice & | __s | ) | const [inline] |
Return an array subset.
Returns a slice_array referencing the elements of the array indicated by the slice argument.
__s | The source slice. |
gslice_array< _Tp > std::valarray< _Tp >::operator[] | ( | const gslice & | __s | ) | [inline] |
Return a reference to an array subset.
Returns a new valarray containing the elements of the array indicated by the gslice argument. The new valarray has the same size as the input gslice.
__s | The source gslice. |
valarray< _Tp > std::valarray< _Tp >::operator[] | ( | const valarray< bool > & | __m | ) | const [inline] |
Return an array subset.
Returns a new valarray containing the elements of the array indicated by the argument. The input is a valarray of bool which represents a bitmask indicating which elements should be copied into the new valarray. Each element of the array is added to the return valarray if the corresponding element of the argument is true.
__m | The valarray bitmask. |
Definition at line 861 of file valarray.
References std::valarray< _Tp >::size().
mask_array< _Tp > std::valarray< _Tp >::operator[] | ( | const valarray< bool > & | __m | ) | [inline] |
Return a reference to an array subset.
Returns a new mask_array referencing the elements of the array indicated by the argument. The input is a valarray of bool which represents a bitmask indicating which elements are part of the subset. Elements of the array are part of the subset if the corresponding element of the argument is true.
__m | The valarray bitmask. |
Definition at line 873 of file valarray.
References std::valarray< _Tp >::size().
_Expr< _IClos< _ValArray, _Tp >, _Tp > std::valarray< _Tp >::operator[] | ( | const valarray< size_t > & | __i | ) | const [inline] |
Return an array subset.
Returns a new valarray containing the elements of the array indicated by the argument. The elements in the argument are interpreted as the indices of elements of this valarray to copy to the return valarray.
__i | The valarray element index list. |
indirect_array< _Tp > std::valarray< _Tp >::operator[] | ( | const valarray< size_t > & | __i | ) | [inline] |
Return a reference to an array subset.
Returns an indirect_array referencing the elements of the array indicated by the argument. The elements in the argument are interpreted as the indices of elements of this valarray to include in the subset. The returned indirect_array refers to these elements.
__i | The valarray element index list. |
Definition at line 892 of file valarray.
References std::valarray< _Tp >::size().
void std::gslice_array< _Tp >::operator^= | ( | const valarray< _Tp > & | __v | ) | const [inline] |
Logical xor slice elements with corresponding elements of v.
Definition at line 206 of file gslice_array.h.
void std::mask_array< _Tp >::operator^= | ( | const valarray< _Tp > & | __v | ) | const [inline] |
Logical xor slice elements with corresponding elements of v.
Definition at line 196 of file mask_array.h.
void std::indirect_array< _Tp >::operator^= | ( | const valarray< _Tp > & | __v | ) | const [inline] |
Logical xor slice elements with corresponding elements of v.
Definition at line 200 of file indirect_array.h.
void std::slice_array< _Tp >::operator^= | ( | const valarray< _Tp > & | __v | ) | const [inline] |
Logical xor slice elements with corresponding elements of v.
Definition at line 262 of file slice_array.h.
valarray< _Tp > & std::valarray< _Tp >::operator^= | ( | const _Tp & | __t | ) | [inline] |
valarray< _Tp > & std::valarray< _Tp >::operator^= | ( | const valarray< _Tp > & | __v | ) | [inline] |
void std::gslice_array< _Tp >::operator|= | ( | const valarray< _Tp > & | __v | ) | const [inline] |
Logical or slice elements with corresponding elements of v.
Definition at line 208 of file gslice_array.h.
void std::mask_array< _Tp >::operator|= | ( | const valarray< _Tp > & | __v | ) | const [inline] |
Logical or slice elements with corresponding elements of v.
Definition at line 198 of file mask_array.h.
void std::indirect_array< _Tp >::operator|= | ( | const valarray< _Tp > & | __v | ) | const [inline] |
Logical or slice elements with corresponding elements of v.
Definition at line 202 of file indirect_array.h.
void std::slice_array< _Tp >::operator|= | ( | const valarray< _Tp > & | __v | ) | const [inline] |
Logical or slice elements with corresponding elements of v.
Definition at line 264 of file slice_array.h.
valarray< _Tp > & std::valarray< _Tp >::operator|= | ( | const _Tp & | __t | ) | [inline] |
valarray< _Tp > & std::valarray< _Tp >::operator|= | ( | const valarray< _Tp > & | __v | ) | [inline] |
valarray< _Tp >::template _UnaryOp< __bitwise_not >::_Rt std::valarray< _Tp >::operator~ | ( | ) | const [inline] |
void std::valarray< _Tp >::resize | ( | size_t | __size, |
_Tp | __c = _Tp() |
||
) | [inline] |
valarray< _Tp > std::valarray< _Tp >::shift | ( | int | __n | ) | const [inline] |
Return a shifted array.
A new valarray is constructed as a copy of this array with elements in shifted positions. For an element with index i, the new position is i - n. The new valarray has the same size as the current one. New elements without a value are set to 0. Elements whose new position is outside the bounds of the array are discarded.
Positive arguments shift toward index 0, discarding elements [0, n). Negative arguments discard elements from the top of the array.
__n | Number of element positions to shift. |
size_t std::slice::size | ( | ) | const [inline] |
Return size of slice.
Definition at line 103 of file slice_array.h.
valarray< size_t > std::gslice::size | ( | ) | const [inline] |
size_t std::valarray< _Tp >::size | ( | ) | const [inline] |
Return the number of elements in array.
Definition at line 910 of file valarray.
Referenced by std::end(), std::gslice_array< _Tp >::operator=(), std::valarray< _Tp >::operator=(), and std::valarray< _Tp >::operator[]().
size_t std::slice::start | ( | ) | const [inline] |
Return array offset of first slice element.
Definition at line 99 of file slice_array.h.
size_t std::gslice::start | ( | ) | const [inline] |
size_t std::slice::stride | ( | ) | const [inline] |
Return array stride of slice.
Definition at line 107 of file slice_array.h.
valarray< size_t > std::gslice::stride | ( | ) | const [inline] |
_Tp std::valarray< _Tp >::sum | ( | ) | const [inline] |
void std::valarray< _Tp >::swap | ( | valarray< _Tp > & | __v | ) | [inline] |