std::valarray::operator+,-,~,! - cppreference.com (original) (raw)

| valarray<T> operator+() const; | (1) | | | ---------------------------------- | --- | | | valarray<T> operator-() const; | (2) | | | valarray<T> operator~() const; | (3) | | | valarray<bool> operator!() const; | (4) | |

Applies unary operators to each element in the numeric array.

[edit] Parameters

(none)

[edit] Return value

A numeric array containing elements with values obtained by applying corresponding operator to the values in *this.

[edit] Exceptions

May throw implementation-defined exceptions.

[edit] 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:

[edit] Example

#include #include #include   template void print(std::string_view const note, std::valarray 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 x{1, 2, 3, 4}; print("x: ", x); print("+x: ", +x); print("+ + x: ", + + x); print("-x: ", -x); print("- - x: ", - - x, "\n\n");   std::valarray y{0, 1, -1, 0x7fff}; print("y: ", y); print("~y: ", ~y); print("~~y: ", ~~y, "\n\n");   std::valarray z{true, false}; print("z: ", z); print("!z: ", !z); print("!!z: ", !!z); }

Possible output:

x: +1 +2 +3 +4 +x: +1 +2 +3 +4

  y: +0 +1 -1 +32767 ~y: -1 -2 +0 -32768 ~~y: +0 +1 -1 +32767   z: true false !z: false true !!z: true false

[edit] See also