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::indirect_array(3) C++ Standard Libary std::indirect_array(3)

std::indirect_array - std::indirect_array


Defined in header <valarray>
template< class T > class indirect_array;


std::indirect_array is a helper template used by the valarray subscript operator
with std::valarray<std::size_t> argument. It has reference semantics to a subset of
the array whose indices specified by the std::valarray<std::size_t> object.


Type Definition
value_type T


constructor constructs a indirect_array
(public member function)
destructor destroys a indirect_array
(public member function)
operator= assigns contents
(public member function)
operator+=
operator-=
operator*=
operator/=
operator%= performs arithmetic operation on the array referred by indirect array.
operator&= (public member function)
operator|=
operator^=
operator<<=
operator>>=

// Run this code


#include <iostream>
#include <valarray>


int main()
{
std::valarray<int> data = {0,1,2,3,4,5,6,7,8,9};


std::valarray<std::size_t> idx = {0,2,4,6,8};


std::cout << "Original valarray: ";
for(int n: data) std::cout << n << ' ';
std::cout << '\n';


data[idx] += data[idx]; // double the values at indexes 'idx'


// the type of data[idx] is std::indirect_array<int>


std::cout << "After indirect modification: ";
for(int n: data) std::cout << n << ' ';
std::cout << '\n';
}


Original valarray: 0 1 2 3 4 5 6 7 8 9
After indirect modification: 0 1 4 3 8 5 12 7 16 9

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.