Espaços nominais
Variantes
Ações

std::valarray::valarray

De cppreference.com

<metanoindex/>

 
 
Biblioteca numéricos
Funções matemáticas comuns
De ponto flutuante ambiente
Números complexos
Matrizes numéricas
Pseudo-aleatório de geração de números
Tempo de compilação aritmética racional (C++11)
Genéricos operações numéricas
Original:
Generic numeric operations
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(C++11)
 
 
<tbody> </tbody>
valarray();
(1)
explicit valarray( size_t count );
(2)
valarray( const T& val, size_t count );
(3)
valarray( const T* vals, size_t count );
(4)
valarray( const valarray& other );
(5)
valarray( valarray&& other );
(6) (desde C++11)
valarray( const std::slice_array<T>& );
(7)
valarray( const std::gslice_array<T>& );
(8)
valarray( const std::mask_array<T>& );
(9)
valarray( const std::indirect_array<T>& );
(10)
valarray( std::initializer_list<T> il );
(11) (desde C++11)

Constructs new numeric array from various sources.

1) Default constructor. Constructs an empty numeric array.
2) Constructs a numeric array with count copies of default-initialized elements.
3) Constructs a numeric array with count copies of val or *val respectively.
4) Constructs a numeric array with copies of count values from an array pointed to by vals. If this array contains less than count values, the behavior is undefined.
5) Copy constructor. Constructs the numeric array with the copy of the contents of other.
6) Move constructor. Constructs the container with the contents of other using move semantics.
11) Constructs the numeric array with the contents of the initializer list il.

Parâmetros

count - the number of elements to construct
val - the value to initialize the elements with
other - another numeric array to use as source to initialize the contents
il - initializer list to initialize the elements with

Exceções

1-5)
(Nenhum)
Original:
(none)
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
6)
noexcept specification:  
<tbody> </tbody>
noexcept
  (desde C++11)
7-11)
(Nenhum)
Original:
(none)
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.