It returns a valarray with each of its elements initialized to the result of applying func to its corresponding element in *this.
DeclarationFollowing is the declaration for std::valarray::apply function.
valarray apply (T func(T)) const; valarray apply (T func(const T&)) const;C++11
valarray apply (T func(T)) const; valarray apply (T func(const T&)) const;Parameters
func − It is a pointer to a function taking an argument of type T.
Return ValueIt returns a valarray with each of its elements initialized to the result of applying func to its corresponding element in *this.
ExceptionsBasic guarantee − if any operation performed on the elements throws an exception.
Data racesAll elements effectively copied are accessed.
ExampleIn below example explains about std::valarray::apply function.
#include <iostream> #include <cstddef> #include <valarray> int increment (int x) {return ++x;} int main () { int init[]={0,10,20,30,40}; std::valarray<int> foo (init,5); std::valarray<int> bar = foo.apply(increment); std::cout << "foo contains:"; for (std::size_t n=0; n<bar.size(); n++) std::cout << ' ' << bar[n]; std::cout << '\n'; return 0; }
Let us compile and run the above program, this will produce the following result −
foo contains: 1 11 21 31 41
valarray.htm
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4