gregorbg
06/25/2019, 8:29 AMMap<K, V>.filterValues
working directly on the values (i.e. it expects (V) -> T
) as opposed to Map<K, V>.mapValues
working on the entire entry (i.e. it expects (Map.Entry<K, V>) -> T
)? Same question applies to the signature of filterKeys
vs. mapKeys
and similar functions.voddan
06/25/2019, 8:41 AMMap.filter
is working on?spand
06/25/2019, 8:41 AMmap
is to avoid returning pairs where the one component is always the same.spand
06/25/2019, 8:42 AMDico
06/25/2019, 10:05 AM