◐ Shell
clean mode source ↗

std::begin(std::valarray) — cppreference.com

De cppreference.com

<metanoindex/>

<tbody> </tbody>

template< class T > /*unspecified1*/ begin( valarray<T>& v );

(1) (depuis C++11)

template< class T > /*unspecified2*/ begin( const valarray<T>& v );

(2) (depuis C++11)

La spécialisation des std::begin pour valarray renvoie un itérateur de type non spécifié référence au premier élément dans le tableau numérique .

Original:

The specialization of std::begin for valarray returns an iterator of unspecified type referring to the first 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)

Le type de retour est conforme aux exigences de mutable RandomAccessIterator .

Original:

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

2)

Le type de retour est conforme aux exigences de RandomAccessIterator constante .

Original:

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

Paramètres

v -

un tableau numérique

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.

Retourne la valeur

Itérateur à la première valeur dans le tableau numérique .

Original:

Iterator to the first 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.

Exceptions

(Aucun)

Original:

(none)

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

Exemple

Voir aussi

std::end spécialisée

Original:

specializes std::end

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


(fonction générique) [edit]