TryPartial

public typealias TryPartial = ForTry
  • Declaration

    Swift

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

    Swift

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

    Swift

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

    Swift

    public static func pure<A>(_ a: A) -> TryOf<A>