operator []

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

Visibility
Public
Signatures
void * operator[](int i)
const void * operator[](int i) const
Parameters
i

The index of the element to return

Returns

The element at the specified index, or NULL if you selected an out-of-range value


Feedback