std::shared_ptr<T>::operator[]

From cppreference.com
< cpp‎ | memory‎ | shared ptr
 
 
Utilities library
General utilities
Date and time
Function objects
Formatting library (C++20)
(C++11)
Relational operators (deprecated in C++20)
Integer comparison functions
(C++20)
Swap and type operations
(C++14)
(C++11)
(C++11)
(C++11)
(C++17)
Common vocabulary types
(C++11)
(C++17)
(C++17)
(C++17)
(C++17)

Elementary string conversions
(C++17)
(C++17)
 
Dynamic memory management
Smart pointers
(C++11)
(C++11)
(C++11)
(until C++17)
(C++11)
Allocators
Memory resources
Uninitialized storage
Uninitialized memory algorithms
Constrained uninitialized memory algorithms
Garbage collection support
Miscellaneous
(C++20)
(C++11)
(C++11)
C Library
Low level memory management
 
 
element_type& operator[]( std::ptrdiff_t idx ) const;
(since C++17)

Index into the array pointed to by the stored pointer.

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

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

Parameters

idx - the array index

Return value

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

Exceptions

Throws nothing.

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.

Example

See also

returns the stored pointer
(public member function)