std::begin(std::valarray)
Aus cppreference.com
<metanoindex/>
<tbody> </tbody> template< class T > /*unspecified1*/ begin( valarray<T>& v ); |
(1) | (seit C++11) |
template< class T > /*unspecified2*/ begin( const valarray<T>& v ); |
(2) | (seit C++11) |
Die Spezialisierung der std::begin für
valarray liefert einen Iterator unbestimmter Art, die sich auf das erste Element in der numerischen Array . 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.
You can help to correct and verify the translation. Click here for instructions.
1)
Der Rückgabetyp erfüllt die Anforderungen der 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)
Der Rückgabetyp entspricht den Anforderungen der ständigen
RandomAccessIterator .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.
Parameter
| v | - | ein numerisches Array
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. |
Rückgabewert
Iterator zum ersten Wert in der numerischen Array .
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.
You can help to correct and verify the translation. Click here for instructions.
Ausnahmen
(None)
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.
Beispiel
| This section is incomplete Reason: no example |
