Subscript operators
Declared in <bdlc_queue.h>
Return a modifiable reference to the element at the specified index.
T&
operator[](int index);
» more...
Return a non-modifiable reference to the element at index.
T const&
operator[](int index) const;
» more...
indexindex| Name | Description |
|---|---|
| index | position of the element to access |