std::experimental::shared_ptr<T>::operator[]
From cppreference.com
< cpp | experimental | shared ptr
element_type& operator[
]
(
std::ptrdiff_t i )
const
noexcept
;
|
(library fundamentals TS) | |
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
Parameters
i | - | the array index |
Return value
A reference to the i-th element of the array, i.e., get()[i]
Remarks
When T
Example
This section is incomplete Reason: no example |
See also
returns the stored pointer (public member function) |