std::deque<T,Allocator>::operator[] (3) - Linux Manuals
std::deque<T,Allocator>::operator[]: std::deque<T,Allocator>::operator[]
NAME
std::deque<T,Allocator>::operator[] - std::deque<T,Allocator>::operator[]
Synopsis
reference operator[]( size_type pos );
const_reference operator[]( size_type pos ) const;
Returns a reference to the element at specified location pos. No bounds checking is performed.
Parameters
pos - position of the element to return
Return value
Reference to the requested element.
Complexity
Constant.
Notes
Unlike std::map::operator[], this operator never inserts a new element into the container.
Example
The following code uses operator[] to read from and write to a std::deque<int>:
// Run this code
Output:
See also
at (public member function)