Package: effect
Module: HashMap
Maps over the entries of the HashMap using the specified partial function
and filters out None values.
Signature
declare const filterMap: { <A, K, B>(f: (value: A, key: K) => Option<B>): (self: HashMap<K, A>) => HashMap<K, B>; <K, A, B>(self: HashMap<K, A>, f: (value: A, key: K) => Option<B>): HashMap<K, B>; }
Since v2.0.0