Subscript operators
Declared in <prevector.h>
Returns a reference to the element at position pos.
unsigned char&
operator[](size_type pos);
» more...
Returns a const reference to the element at position pos.
unsigned char const&
operator[](size_type pos) const;
» more...
| Name | Description |
|---|---|
| pos | The index of the element to access. |