keyAt method

TKey keyAt(
  1. int i
)

Returns the key at visible position i. Unchecked — i must satisfy 0 <= i < length.

Implementation

TKey keyAt(int i) {
  return _nids.keyOfUnchecked(_orderNids[i]);
}