get method

Option<V> get(
  1. K k
)

Implementation

Option<V> get(K k) => _map.get(k.hashCode).bind((candidates) =>
    candidates.find((candidate) => candidate.value1 == k).map((candidate) => candidate.value2));