getByKey method

V getByKey(
  1. K key
)

Retrieves the value associated with the specified key.

Implementation

V getByKey(K key) {
  return values[_indizes[key]!];
}