std::valarray<T>::operator+,-,~,!
Min standard notice:
Applies unary operators to each element in the numeric array.
# Declarations
valarray<T> operator+() const;
valarray<T> operator-() const;
valarray<T> operator~() const;
valarray<bool> operator!() const;
# Return value
A numeric array containing elements with values obtained by applying corresponding operator to the values in *this.
# Notes
Each of the operators can only be instantiated if the following requirements are met:
The function can be implemented with the return type different from std::valarray. In this case, the replacement type has the following properties:
# Example
#include <iostream>
#include <string_view>
#include <valarray>
template<typename T>
void print(std::string_view const note,
std::valarray<T> const vala, // by-value, see Notes above
std::string_view const term = "\n")
{
std::cout << note << std::boolalpha << std::showpos;
for (T const element : vala)
std::cout << '\t' << element;
std::cout << term;
}
int main()
{
std::valarray<int> x{1, 2, 3, 4};
print<int>("x: ", x);
print<int>("+x: ", +x);
print<int>("+ + x: ", + + x);
print<int>("-x: ", -x);
print<int>("- - x: ", - - x, "\n\n");
std::valarray<short> y{0, 1, -1, 0x7fff};
print<short>("y: ", y);
print<short>("~y: ", ~y);
print<short>("~~y: ", ~~y, "\n\n");
std::valarray<bool> z{true, false};
print<bool>("z: ", z);
print<bool>("!z: ", !z);
print<bool>("!!z: ", !!z);
}