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::experimental::shared_ptr::operator[](3) C++ Standard Libary std::experimental::shared_ptr::operator[](3)

std::experimental::shared_ptr::operator[] - std::experimental::shared_ptr::operator[]


element_type& operator[](std::ptrdiff_t i) const (library fundamentals TS)
noexcept;


Index into the array pointed to by the stored pointer.


The behavior is undefined if the stored pointer is null or if i is negative.


If T (the template parameter of shared_ptr) is an array type U[N], i shall be less
than N, or the behavior is undefined.


i - the array index


A reference to the i-th element of the array , i.e., get()[i]


Remarks


When T is not an array type, it is unspecified whether this function is declared. If
the function is declared, it is unspecified what its return type is, except that the
declaration (although not necessarily the definition) of the function is guaranteed
to be legal.


This section is incomplete
Reason: no example


get returns the stored pointer
(public member function)

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.