libstdc++
std::valarray< _Tp > Class Template Reference
Inheritance diagram for std::valarray< _Tp >:

List of all members.

Public Types

Public Member Functions

Friends


Detailed Description

template<class _Tp>
class std::valarray< _Tp >

Smart array designed to support numeric processing.

A valarray is an array that provides constraints intended to allow for effective optimization of numeric array processing by reducing the aliasing that can result from pointer representations. It represents a one-dimensional array from which different multidimensional subsets can be accessed and modified.

Template Parameters:
_TpType of object in the array.

Definition at line 118 of file valarray.


Constructor & Destructor Documentation

template<class _Tp>
std::valarray< _Tp >::valarray ( const _Tp *  __restrict__,
size_t   
)

Construct an array initialized to the first n elements of t.


The documentation for this class was generated from the following file: