import type { Cause } from "./model"; /** * ```haskell * map_ :: Functor f => (f a, (a -> b)) -> f b * ``` * * Lifts a function a -> b to a function f a -> f b * * @category Functor * @since 1.0.0 */ export declare const map_: (fa: Cause, f: (e: E) => D) => Cause; /** * ```haskell * map :: Functor f => (a -> b) -> f a -> f b * ``` * * lifts a function a -> b to a function f a -> f b * * @category Functor * @since 1.0.0 */ export declare const map: (f: (e: E) => D) => (fa: Cause) => Cause; //# sourceMappingURL=functor.d.ts.map