Namensräume
Varianten
Aktionen

std::end(std::valarray)

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

 
 
Numerik-Bibliothek
Gemeinsame mathematischen Funktionen
Floating-Point-Umgebung
Komplexe Zahlen
Numerische Arrays
Pseudo-Zufallszahlen
Compile-time rationale Arithmetik (C++11)
Generische numerische Operationen
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.
iota(C++11)
accumulate
inner_product
adjacent_difference
partial_sum
 
 
template< class T >
/*unspecified1*/ end( valarray<T>& v );
(1) (seit C++11)
template< class T >
/*unspecified2*/ end( const valarray<T>& v );
(2) (seit C++11)
Die Spezialisierung der std::begin für valarray liefert einen Iterator unbestimmter Art, die sich auf der einen nach dem letzten Element in der numerischen Array .
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)
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.
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.

Inhaltsverzeichnis

[Bearbeiten] 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.

[Bearbeiten] Rückgabewert

Iterator um ein nach dem letzten Wert in der numerischen Array .
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.

[Bearbeiten] 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.

[Bearbeiten] Beispiel

[Bearbeiten] Siehe auch

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

(Funktions-Template) [edit]