effect-io-ai

Package: effect
Module: HashMap

HashMap.map

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>; }

Source

Since v2.0.0