getUnchecked abstract method

T getUnchecked(
  1. int index
)

Returns the element at the given index in the range.

Does not perform range checks. The result is undefined, unless the index is within the expected bounds 0 <= index < length.

Implementation

T getUnchecked(int index);