ConstPartial
Partial application of the Const type constructor, omitting the last parameter.
-
Declaration
Swift
public static func hash<T>(_ fa: ConstOf<A, T>, into hasher: inout Hasher) where T : Hashable
-
Declaration
Swift
public static func pure<C>(_ a: C) -> ConstOf<A, C>
-
Declaration
Swift
public static func foldLeft<C, B>( _ fa: ConstOf<A, C>, _ b: B, _ f: @escaping (B, C) -> B) -> B
-
Declaration
Swift
public static func traverse<G: Applicative, C, B>( _ fa: ConstOf<A, C>, _ f: @escaping (C) -> Kind<G, B>) -> Kind<G, ConstOf<A, B>>