IorPartial

public final class IorPartial<L> : Kind<ForIor, L>

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

  • Declaration

    Swift

    public static func eq<A: Equatable>(
        _ lhs: IorOf<L, A>,
        _ rhs: IorOf<L, A>) -> Bool
  • Declaration

    Swift

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

    Swift

    public static func map<A, B>(
        _ fa: IorOf<L, A>,
        _ f: @escaping (A) -> B) -> IorOf<L, B>
  • Declaration

    Swift

    public static func pure<A>(_ a: A) -> IorOf<L, A>