Filter<K, V> extension

on

Methods

filter(bool f(MapEntry<K, V> entry)) Iterable<MapEntry<K, V>>

Available on Map<K, V>, provided by the Filter extension

Filters the map entries based on the provided predicate function f. The function returns an iterable of map entries that satisfy the condition defined in f.