C++ Standard Library C++ STL Library

C++ <valarray> - operator>> Function



The C++ <valarray> operator>> function is used to apply right shift operator to each element of two valarrays, or a valarray and a value.

Syntax

template <class T>
  valarray<T> operator>> 
    (const valarray<T>& lhs, const valarray<T>& rhs);
template <class T>
  valarray<T> operator>> 
    (const T& val, const valarray<T>& rhs);
template <class T>
  valarray<T> operator>> 
    (const valarray<T>& lhs, const T& val);

Parameters

lhs Specify left-hand side valarray.
rhs Specify right-hand side valarray.
val Specify a value of type T.

Return Value

Returns a new valarray object containing elements as a result of performing operation on each element.

Time Complexity

Depends on library implementation.

Example:

The example below shows the usage of operator>> function.

#include <iostream>
#include <valarray>
using namespace std;
 
int main (){
  valarray<int> va1 {60, 70, 80, 90};
  valarray<int> va2 {1, 2, 2, 1};
  valarray<int> va3, va4;

  //result of va1 >> 2 is stored in va3 
  va3 = va1 >> 2;

  cout<<"va3 contains: ";
  for(int i = 0; i < va3.size(); i++)
    cout<<va3[i]<<" ";

  //result of va1 >> va2 is stored in va4 
  va4 = va1 >> va2;

  cout<<"\nva4 contains: ";
  for(int i = 0; i < va4.size(); i++)
    cout<<va4[i]<<" ";  
    
  return 0;
}

The output of the above code will be:

va3 contains: 15 17 20 22 
va4 contains: 30 17 20 45 

❮ C++ <valarray> Library