IorPartial
Partial application of the Ior type constructor, omitting the last parameter.
-
Declaration
Swift
public static func hash<A>(_ fa: IorOf<L, A>, into hasher: inout Hasher) where A : Hashable
-
Declaration
Swift
public static func pure<A>(_ a: A) -> IorOf<L, A>
-
Declaration
Swift
public static func foldLeft<A, B>( _ fa: IorOf<L, A>, _ c: B, _ f: @escaping (B, A) -> B) -> B
-
Declaration
Swift
public static func traverse<G: Applicative, A, B>( _ fa: IorOf<L, A>, _ f: @escaping (A) -> Kind<G, B>) -> Kind<G, IorOf<L, B>>