Package: effect
Module: HashMap
Maps over the entries of the HashMap using the specified function.
Signature
declare const map: { <A, V, K>(f: (value: V, key: K) => A): (self: HashMap<K, V>) => HashMap<K, A>; <K, V, A>(self: HashMap<K, V>, f: (value: V, key: K) => A): HashMap<K, A>; }
Since v2.0.0