operator [] method

int operator [](
  1. int index
)

Gets the byte at index.

This method does not expand the buffer if it reached its constraints.


Exceptions:

Implementation

int operator [](int index) {
  return getByte(index);
}