lookupKeyEq method

Option<K> lookupKeyEq(
  1. Eq<K> eq,
  2. K key
)

Get the key equal to key if present, otherwise return None.

Implementation

Option<K> lookupKeyEq(Eq<K> eq, K key) => keys.lookupEq(eq, key);