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