std::valarray::apply
Aus 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. |
<metanoindex/>
<tbody> </tbody> valarray<T> apply( T func(T) ) const; |
||
valarray<T> apply( T func(const T&) ) const; |
||
Gibt ein neues valarray gleicher Größe mit den Werten, die durch Anwendung der Funktion
func zu den vorherigen Werten der Elemente erfasst werden .Original:
Returns a new valarray of the same size with values which are acquired by applying function
func to the previous values of the elements.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
| func | - | Funktion, um die Werte zu übernehmen Original: function to apply to the values |