std::end(std::valarray)
De cppreference.com
![]() |
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
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) |
La especialización de std::begin para
valarray
devuelve un iterador de tipo no especificado en referencia a la una y media del último elemento de la 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.
You can help to correct and verify the translation. Click here for instructions.
1)
El tipo de retorno cumple los requisitos de mutable
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.
You can help to correct and verify the translation. Click here for instructions.
2)
El tipo de retorno cumple los requisitos de
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.
You can help to correct and verify the translation. Click here for instructions.
Contenido |
[editar] Parámetros
v | - | una 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 a un más allá del último valor de la 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.
You can help to correct and verify the translation. Click here for instructions.
[editar] Excepciones
(Ninguno)
Original:
(none)
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[editar] Ejemplo
This section is incomplete Reason: no example |
[editar] Ver también
(C++11) |
se especializa std::begin 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. (función de plantilla) |