lookup method Null safety
- K key
Get the value at given key
if present, otherwise return None.
Implementation
Option<V> lookup(K key) => Option.fromNullable(this[key]);
Get the value at given key
if present, otherwise return None.
Option<V> lookup(K key) => Option.fromNullable(this[key]);