UNPKG

veffect

Version:

powerful TypeScript validation library built on the robust foundation of Effect combining exceptional type safety, high performance, and developer experience. Taking inspiration from Effect's functional principles, VEffect delivers a balanced approach tha

9 lines 420 B
import type * as HM from "../HashMap.js"; /** * Maps over the entries of the `HashMap` using the specified function. * * @since 2.0.0 * @category mapping */ export declare const map: (<A, V, K>(f: (value: V, key: K) => A) => (self: HM.HashMap<K, V>) => HM.HashMap<K, A>) & (<K_1, V_1, A_1>(self: HM.HashMap<K_1, V_1>, f: (value: V_1, key: K_1) => A_1) => HM.HashMap<K_1, A_1>); //# sourceMappingURL=hashMap.d.ts.map