WriterTPartial
public final class WriterTPartial<F, W> : Kind2<ForWriterT, F, W>
Partial application of the WriterT type constructor, omitting the last parameter.
Functions for WriterT when the effect has an instance of Applicative and the accumulator type has an instance of Monoid
-
Declaration
Swift
public static func hash<A>(_ fa: WriterTOf<F, W, A>, into hasher: inout Hasher) where A : Hashable
-
Declaration
Swift
public static func pure<A>(_ a: A) -> WriterTOf<F, W, A>
-
Declaration
Swift
public static func empty<A>() -> WriterTOf<F, W, A>
-
Declaration
Swift
public static func emptyK<A>() -> WriterTOf<F, W, A>
-
Declaration
Swift
public static func writer<A>(_ aw: (W, A)) -> WriterTOf<F, W, A>
-
Declaration
Swift
public typealias E = F.E
-
Declaration
Swift
public typealias D = F.D