FreePartial

public final class FreePartial<F> : Kind<ForFree, F> where F : Functor

Partial application of the Free type constructor, omitting the last parameter.

  • Declaration

    Swift

    public static func map<A, B>(
        _ fa: FreeOf<F, A>,
        _ f: @escaping (A) -> B
    ) -> FreeOf<F, B>