GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
std::valarray::operator+,-,~,!(3) C++ Standard Libary std::valarray::operator+,-,~,!(3)

std::valarray::operator+,-,~,! - std::valarray::operator+,-,~,!


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.


(none)


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


May throw implementation-defined exceptions.


Each of the operators can only be instantiated if the following requirements are
met:


* The indicated operator can be applied to type T
* The result value can be unambiguously converted to T (1-3) or bool (4).


The function can be implemented with the return type different from std::valarray.
In this case, the replacement type has the following properties:


* All const member functions of std::valarray are provided.
* std::valarray, std::slice_array, std::gslice_array, std::mask_array and
std::indirect_array can be constructed from the replacement type.
* All functions accepting an argument of type const std::valarray&
except begin() and end()
(since C++11) should also accept the replacement type.
* All functions accepting two arguments of type const std::valarray&
should accept every combination of const std::valarray& and the
replacement type.
* The return type does not add more than two levels of template nesting
over the most deeply-nested argument type.

// Run this code


#include <iostream>
#include <valarray>
#include <string_view>


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);
}


x: +1 +2 +3 +4
+x: +1 +2 +3 +4
+ + x: +1 +2 +3 +4
-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


operator+=
operator-=
operator*=
operator/=
operator%= applies compound assignment operator to each element of the valarray
operator&= (public member function)
operator|=
operator^=
operator<<=
operator>>=
operator+
operator-
operator*
operator/
operator% applies binary operators to each element of two valarrays, or a valarray
operator& and a value
operator| (function template)
operator^
operator<<
operator>>
operator&&
operator||

2022.07.31 http://cppreference.com

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.