operator []

The [] operator returns the element at the specified position.

Note: This is not the preferred method because it does not include a check of the index range.
Visibility
Public
Signature
Concept& operator [](int i)
Parameters
i 

The index of the element to return

Returns

The element at the specified position


Feedback