-
Declaration
Swift
public static func hash<A>(_ fa: IdOf<A>, into hasher: inout Hasher) where A : Hashable
-
Declaration
Swift
public static func extract<A>(_ fa: IdOf<A>) -> A
-
Declaration
Swift
public static func foldLeft<A, B>( _ fa: IdOf<A>, _ b: B, _ f: @escaping (B, A) -> B) -> B
-
Declaration
Swift
public static func traverse<G: Applicative, A, B>( _ fa: IdOf<A>, _ f: @escaping (A) -> Kind<G, B>) -> Kind<G, IdOf<B>>