lookup method
If element
is a SortedMapEntry, its key is used to find an entry in
this map.
Returns null
if element
is not a SortedMapEntry or if its key is not
found in the map.
Implementation
@override
SortedMapEntry<K, V>? lookup(Object? element) => _treeSet.lookup(element);