std:: swap (std::valarray)
From cppreference.com
C++
Numerics library
Common mathematical functions | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Mathematical special functions (C++17) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Mathematical constants (C++20) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Basic linear algebra algorithms (C++26) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Data-parallel types (
simd
)
(C++26)
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Floating-point environment (C++11) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Complex numbers | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Numeric array (
valarray
)
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Pseudo-random number generation | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Factor operations | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Interpolations | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Saturation arithmetic | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Generic numeric operations | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bit operations | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Defined in header
<valarray>
|
||
template
<
class
T
>
void swap ( std:: valarray < T > & lhs, std:: valarray < T > & rhs ) noexcept ; |
(since C++11) | |
Specializes the std::swap algorithm for std::valarray . Swaps the contents of lhs and rhs . Calls lhs. swap ( rhs ) .
Parameters
lhs, rhs | - | valarrays whose contents to swap |
Return value
(none)
Complexity
Constant.
Example
Run this code
#include <iostream> #include <valarray> void print(auto rem, const std::valarray<int>& v) { std::cout << rem << '{'; for (char sep[]{0, ' ', 0}; auto elem : v) std::cout << sep << elem, *sep = ','; std::cout << "}\n"; } int main() { std::valarray x{3, 1, 4, 1, 5}; std::valarray y{2, 7, 1, 8}; print("Before swap:\n" "x: ", x); print("y: ", y); std::swap(x, y); print("After swap:\n" "x: ", x); print("y: ", y); }
Output:
Before swap: x: {3, 1, 4, 1, 5} y: {2, 7, 1, 8} After swap: x: {2, 7, 1, 8} y: {3, 1, 4, 1, 5}
See also
swaps with another valarray
(public member function) |
Retrieved from "
https://en.cppreference.com/mwiki/index.php?title=cpp/numeric/valarray/swap2&oldid=157244
"