std::shared_ptr<T>::operator[] (3) - Linux Manuals
std::shared_ptr<T>::operator[]: std::shared_ptr<T>::operator[]
Command to display std::shared_ptr<T>::operator[]
manual in Linux: $ man 3 std::shared_ptr<T>::operator[]
NAME
std::shared_ptr<T>::operator[] - std::shared_ptr<T>::operator[]
Synopsis
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
(none)
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
This section is incomplete
Reason: no example
See also
returns the stored pointer
get (public member function)
Pages related to std::shared_ptr<T>::operator[]
- std::shared_ptr<T>::operator*,std::shared_ptr<T>::operator-> (3) - std::shared_ptr<T>::operator*,std::shared_ptr<T>::operator->
- std::shared_ptr<T>::operator<< (3) - std::shared_ptr<T>::operator<<
- std::shared_ptr<T>::operator= (3) - std::shared_ptr<T>::operator=
- std::shared_ptr<T>::operator==,!=,<,<=,>,>= (3) - std::shared_ptr<T>::operator==,!=,<,<=,>,>=
- std::shared_ptr<T>::operatorbool (3) - std::shared_ptr<T>::operatorbool
- std::shared_ptr<T>::owner_before (3) - std::shared_ptr<T>::owner_before
- std::shared_ptr<T>::get (3) - std::shared_ptr<T>::get
- std::shared_ptr<T>::reset (3) - std::shared_ptr<T>::reset
- std::shared_ptr<T>::shared_ptr (3) - std::shared_ptr<T>::shared_ptr
- std::shared_ptr<T>::swap (3) - std::shared_ptr<T>::swap
- std::shared_ptr<T>::unique (3) - std::shared_ptr<T>::unique
- std::shared_ptr<T>::use_count (3) - std::shared_ptr<T>::use_count
- std::shared_ptr<T>::~shared_ptr (3) - std::shared_ptr<T>::~shared_ptr
- std::shared_ptr (3) - std::shared_ptr
- std::shared_future (3) - std::shared_future
- std::shared_future<T>::get (3) - std::shared_future<T>::get