Espacios de nombres
Variantes
Acciones

std::valarray::resize

De cppreference.com
< cpp‎ | numeric‎ | valarray
 
 
 
 
void resize( std::size_t count, T value = T() );
Cambia el tamaño de la valarray para contener los elementos count .
Original:
Resizes the valarray to contain count elements.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Si el tamaño actual es menor que count, los elementos adicionales que se añaden y se inicializa con value .
Original:
If the current size is less than count, additional elements are appended and initialized with value.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Si el tamaño actual es mayor que count, la valarray se reduce a sus elementos count primera .
Original:
If the current size is greater than count, the valarray is reduced to its first count elements.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Contenido

[editar] Parámetros

count -
nuevo tamaño del contenedor
Original:
new size of the container
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
value -
el valor para inicializar los elementos nuevos
Original:
the value to initialize the new elements with
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

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

[editar] Ejemplo

[editar] Ver también

devuelve el tamaño de valarray
Original:
returns the size of valarray
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(función miembro pública) [editar]