EitherKPartial

public final class EitherKPartial<F, G> : Kind2<ForEitherK, F, G>

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

  • Declaration

    Swift

    public static func hash<A>(_ fa: EitherKOf<F, G, A>, into hasher: inout Hasher) where A : Hashable
  • Declaration

    Swift

    public static func imap<A, B>(
        _ fa: EitherKOf<F, G, A>,
        _ f: @escaping (A) -> B,
        _ g: @escaping (B) -> A) -> EitherKOf<F, G, B>