Espaços nominais
Variantes
Acções

std::end(std::valarray)

Da cppreference.com
< cpp‎ | numeric‎ | valarray

 
 
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)
 
 
template<class T >
/*unspecified1*/ end( valarray<T>& v );
(1) (desde C++11)
template<class T >
/*unspecified2*/ end(const valarray<T>& v );
(2) (desde C++11)
A especialização das std::begin para valarray retorna um iterador de tipo não especificado referindo-se ao um passado, o último elemento da matriz numérica.
Original:
The specialization of std::begin for valarray returns an iterator of unspecified type referring to the one past the last element in the numeric array.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
1)
O tipo de retorno cumpre os requisitos da mutável RandomAccessIterator.
Original:
The return type meets the requirements of mutable RandomAccessIterator.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
2)
O tipo de retorno cumpre os requisitos da RandomAccessIterator constante.
Original:
The return type meets the requirements of constant RandomAccessIterator.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Índice

[editar]Parâmetros

v -
uma matriz numérica
Original:
a numeric array
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[editar]Valor de retorno

Iterator para um após o último valor da matriz numérica.
Original:
Iterator to one past the last value in the numeric array.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[editar]Exceções

(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.

[editar]Exemplo

[editar]Veja também

std::begin especializada
Original:
specializes std::begin
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(modelo de função)[edit]
close