fromIndex static method

PT fromIndex(
  1. int index
)

Implementation

static PT fromIndex (int index) {
  if (index < 0 ||index >= _values.length ) {
    return UNSUPPORT;
  }
  return _values[index];
}