IdPartial

public typealias IdPartial = ForId
  • Declaration

    Swift

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

    Swift

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

    Swift

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

    Swift

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