Class WriterT<W,M extends MonadRec<?,M>,A>
- java.lang.Object
-
- com.jnape.palatable.lambda.monad.transformer.builtin.WriterT<W,M,A>
-
- Type Parameters:
W- the accumulation typeM- themonadic embeddingA- the result type
- All Implemented Interfaces:
Applicative<A,WriterT<W,M,?>>,Functor<A,WriterT<W,M,?>>,Monad<A,WriterT<W,M,?>>,MonadBase<M,A,WriterT<W,?,?>>,MonadRec<A,WriterT<W,M,?>>,MonadWriter<W,A,WriterT<W,M,?>>,MonadT<M,A,WriterT<W,M,?>,WriterT<W,?,?>>
public final class WriterT<W,M extends MonadRec<?,M>,A> extends java.lang.Object implements MonadWriter<W,A,WriterT<W,M,?>>, MonadT<M,A,WriterT<W,M,?>,WriterT<W,?,?>>
Amonad transformerforWriter.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description WriterT<W,M,A>censor(Fn1<? super W,? extends W> fn)Update the accumulated state.<B> WriterT<W,M,B>discardL(Applicative<B,WriterT<W,M,?>> appB)Sequence both thisApplicativeandappB, discarding thisApplicative'sresult and returningappB.<B> WriterT<W,M,A>discardR(Applicative<B,WriterT<W,M,?>> appB)Sequence both thisApplicativeandappB, discardingappB'sresult and returning thisApplicative.<MA extends MonadRec<A,M>>
MAevalWriterT(Monoid<W> monoid)Given aMonoidfor the accumulation, run the computation represented by thisWriterTinside themonadic effect, ignoring the resulting accumulation, yielding the value in isolation.<MW extends MonadRec<W,M>>
MWexecWriterT(Monoid<W> monoid)Given aMonoidfor the accumulation, run the computation represented by thisWriterTinside themonadic effect, ignoring the value, yielding the accumulation in isolation.<B> WriterT<W,M,B>flatMap(Fn1<? super A,? extends Monad<B,WriterT<W,M,?>>> f)Chain dependent computations that may continue or short-circuit based on previous results.<B> WriterT<W,M,B>fmap(Fn1<? super A,? extends B> fn)Covariantly transmute this functor's parameter using the given mapping function.<B> Lazy<WriterT<W,M,B>>lazyZip(Lazy<? extends Applicative<Fn1<? super A,? extends B>,WriterT<W,M,?>>> lazyAppFn)Given alazyinstance of this applicative over a mapping function, "zip" the two instances together using whatever application semantics the current applicative supports.<B,N extends MonadRec<?,N>>
WriterT<W,N,B>lift(MonadRec<B,N> mb)static <W> Lift<WriterT<W,?,?>>liftWriterT()static <W,M extends MonadRec<?,M>,A>
WriterT<W,M,A>listen(MonadRec<A,M> ma)<B> WriterT<W,M,Tuple2<A,B>>listens(Fn1<? super W,? extends B> fn)Map the accumulation into a value and pair it with the current output.<B> WriterT<W,M,B>pure(B b)Lift the valuebinto this applicative functor.static <W,M extends MonadRec<?,M>>
Pure<WriterT<W,M,?>>pureWriterT(Pure<M> pureM)<MAW extends MonadRec<Tuple2<A,W>,M>>
MAWrunWriterT(Monoid<W> monoid)Given aMonoidfor the accumulation, run the computation represented by thisWriterTinside themonadic effect, accumulate the written output in terms of theMonoid, and produce the accumulation and the result inside theMonad.static <W,M extends MonadRec<?,M>>
WriterT<W,M,Unit>tell(MonadRec<W,M> mw)<B> WriterT<W,M,B>trampolineM(Fn1<? super A,? extends MonadRec<RecursiveResult<A,B>,WriterT<W,M,?>>> fn)Given some operation yielding aRecursiveResultinside thisMonadRec, internally trampoline the operation until it yields aterminationinstruction.static <W,M extends MonadRec<?,M>,A>
WriterT<W,M,A>writerT(MonadRec<Tuple2<A,W>,M> maw)<B> WriterT<W,M,B>zip(Applicative<Fn1<? super A,? extends B>,WriterT<W,M,?>> appFn)Given another instance of this applicative over a mapping function, "zip" the two instances together using whatever application semantics the current applicative supports.
-
-
-
Method Detail
-
runWriterT
public <MAW extends MonadRec<Tuple2<A,W>,M>> MAW runWriterT(Monoid<W> monoid)
Given aMonoidfor the accumulation, run the computation represented by thisWriterTinside themonadic effect, accumulate the written output in terms of theMonoid, and produce the accumulation and the result inside theMonad.
-
evalWriterT
public <MA extends MonadRec<A,M>> MA evalWriterT(Monoid<W> monoid)
Given aMonoidfor the accumulation, run the computation represented by thisWriterTinside themonadic effect, ignoring the resulting accumulation, yielding the value in isolation.
-
execWriterT
public <MW extends MonadRec<W,M>> MW execWriterT(Monoid<W> monoid)
Given aMonoidfor the accumulation, run the computation represented by thisWriterTinside themonadic effect, ignoring the value, yielding the accumulation in isolation.
-
listens
public <B> WriterT<W,M,Tuple2<A,B>> listens(Fn1<? super W,? extends B> fn)
Map the accumulation into a value and pair it with the current output.- Specified by:
listensin interfaceMonadWriter<W,M extends MonadRec<?,M>,A>- Type Parameters:
B- the mapped output- Parameters:
fn- the mapping function- Returns:
- the updated
MonadWriter
-
censor
public WriterT<W,M,A> censor(Fn1<? super W,? extends W> fn)
Update the accumulated state.- Specified by:
censorin interfaceMonadWriter<W,M extends MonadRec<?,M>,A>- Parameters:
fn- the update function- Returns:
- the updated
MonadWriter
-
lift
public <B,N extends MonadRec<?,N>> WriterT<W,N,B> lift(MonadRec<B,N> mb)
- Specified by:
liftin interfaceMonadBase<W,M extends MonadRec<?,M>,A>- Specified by:
liftin interfaceMonadT<M extends MonadRec<?,M>,A,WriterT<W,M extends MonadRec<?,M>,?>,WriterT<W,?,?>>- Type Parameters:
B- theMonadReccarrier typeN- the argumentMonadRecwitness- Parameters:
mb- the argumentMonadRec- Returns:
- the new
MonadBase
-
trampolineM
public <B> WriterT<W,M,B> trampolineM(Fn1<? super A,? extends MonadRec<RecursiveResult<A,B>,WriterT<W,M,?>>> fn)
Given some operation yielding aRecursiveResultinside thisMonadRec, internally trampoline the operation until it yields aterminationinstruction.Stack-safety depends on implementations guaranteeing that the growth of the call stack is a constant factor independent of the number of invocations of the operation. For various examples of how this can be achieved in stereotypical circumstances, see the referenced types.
- Specified by:
trampolineMin interfaceMonadRec<W,M extends MonadRec<?,M>>- Type Parameters:
B- the ultimate resulting carrier type- Parameters:
fn- the function to internally trampoline- Returns:
- the trampolined
MonadRec - See Also:
for a basic implementation,for a implementation,for an implementation leveraging an already stack-safe,for a implementation
-
fmap
public <B> WriterT<W,M,B> fmap(Fn1<? super A,? extends B> fn)
Covariantly transmute this functor's parameter using the given mapping function. Generally this method is specialized to return an instance of the class implementing Functor.- Specified by:
fmapin interfaceApplicative<W,M extends MonadRec<?,M>>- Specified by:
fmapin interfaceFunctor<W,M extends MonadRec<?,M>>- Specified by:
fmapin interfaceMonad<W,M extends MonadRec<?,M>>- Specified by:
fmapin interfaceMonadRec<W,M extends MonadRec<?,M>>- Specified by:
fmapin interfaceMonadT<M extends MonadRec<?,M>,A,WriterT<W,M extends MonadRec<?,M>,?>,WriterT<W,?,?>>- Specified by:
fmapin interfaceMonadWriter<W,M extends MonadRec<?,M>,A>- Type Parameters:
B- the new parameter type- Parameters:
fn- the mapping function- Returns:
- a functor over B (the new parameter type)
-
pure
public <B> WriterT<W,M,B> pure(B b)
Lift the valuebinto this applicative functor.- Specified by:
purein interfaceApplicative<W,M extends MonadRec<?,M>>- Specified by:
purein interfaceMonad<W,M extends MonadRec<?,M>>- Specified by:
purein interfaceMonadRec<W,M extends MonadRec<?,M>>- Specified by:
purein interfaceMonadT<M extends MonadRec<?,M>,A,WriterT<W,M extends MonadRec<?,M>,?>,WriterT<W,?,?>>- Specified by:
purein interfaceMonadWriter<W,M extends MonadRec<?,M>,A>- Type Parameters:
B- the type of the returned applicative's parameter- Parameters:
b- the value- Returns:
- an instance of this applicative over b
-
flatMap
public <B> WriterT<W,M,B> flatMap(Fn1<? super A,? extends Monad<B,WriterT<W,M,?>>> f)
Chain dependent computations that may continue or short-circuit based on previous results.- Specified by:
flatMapin interfaceMonad<W,M extends MonadRec<?,M>>- Specified by:
flatMapin interfaceMonadRec<W,M extends MonadRec<?,M>>- Specified by:
flatMapin interfaceMonadT<M extends MonadRec<?,M>,A,WriterT<W,M extends MonadRec<?,M>,?>,WriterT<W,?,?>>- Specified by:
flatMapin interfaceMonadWriter<W,M extends MonadRec<?,M>,A>- Type Parameters:
B- the resulting monad parameter type- Parameters:
f- the dependent computation over A- Returns:
- the new monad instance
-
zip
public <B> WriterT<W,M,B> zip(Applicative<Fn1<? super A,? extends B>,WriterT<W,M,?>> appFn)
Given another instance of this applicative over a mapping function, "zip" the two instances together using whatever application semantics the current applicative supports.- Specified by:
zipin interfaceApplicative<W,M extends MonadRec<?,M>>- Specified by:
zipin interfaceMonad<W,M extends MonadRec<?,M>>- Specified by:
zipin interfaceMonadRec<W,M extends MonadRec<?,M>>- Specified by:
zipin interfaceMonadT<M extends MonadRec<?,M>,A,WriterT<W,M extends MonadRec<?,M>,?>,WriterT<W,?,?>>- Specified by:
zipin interfaceMonadWriter<W,M extends MonadRec<?,M>,A>- Type Parameters:
B- the resulting applicative parameter type- Parameters:
appFn- the other applicative instance- Returns:
- the mapped applicative
-
lazyZip
public <B> Lazy<WriterT<W,M,B>> lazyZip(Lazy<? extends Applicative<Fn1<? super A,? extends B>,WriterT<W,M,?>>> lazyAppFn)
Given alazyinstance of this applicative over a mapping function, "zip" the two instances together using whatever application semantics the current applicative supports. This is useful for applicatives that support lazy evaluation and early termination.- Specified by:
lazyZipin interfaceApplicative<W,M extends MonadRec<?,M>>- Specified by:
lazyZipin interfaceMonad<W,M extends MonadRec<?,M>>- Specified by:
lazyZipin interfaceMonadRec<W,M extends MonadRec<?,M>>- Specified by:
lazyZipin interfaceMonadT<M extends MonadRec<?,M>,A,WriterT<W,M extends MonadRec<?,M>,?>,WriterT<W,?,?>>- Specified by:
lazyZipin interfaceMonadWriter<W,M extends MonadRec<?,M>,A>- Type Parameters:
B- the resulting applicative parameter type- Parameters:
lazyAppFn- the lazy other applicative instance- Returns:
- the mapped applicative
- See Also:
Maybe,Either
-
discardL
public <B> WriterT<W,M,B> discardL(Applicative<B,WriterT<W,M,?>> appB)
Sequence both thisApplicativeandappB, discarding thisApplicative'sresult and returningappB. This is generally useful for sequentially performing side-effects.- Specified by:
discardLin interfaceApplicative<W,M extends MonadRec<?,M>>- Specified by:
discardLin interfaceMonad<W,M extends MonadRec<?,M>>- Specified by:
discardLin interfaceMonadRec<W,M extends MonadRec<?,M>>- Specified by:
discardLin interfaceMonadT<M extends MonadRec<?,M>,A,WriterT<W,M extends MonadRec<?,M>,?>,WriterT<W,?,?>>- Specified by:
discardLin interfaceMonadWriter<W,M extends MonadRec<?,M>,A>- Type Parameters:
B- the type of the returned Applicative's parameter- Parameters:
appB- the other Applicative- Returns:
- appB
-
discardR
public <B> WriterT<W,M,A> discardR(Applicative<B,WriterT<W,M,?>> appB)
Sequence both thisApplicativeandappB, discardingappB'sresult and returning thisApplicative. This is generally useful for sequentially performing side-effects.- Specified by:
discardRin interfaceApplicative<W,M extends MonadRec<?,M>>- Specified by:
discardRin interfaceMonad<W,M extends MonadRec<?,M>>- Specified by:
discardRin interfaceMonadRec<W,M extends MonadRec<?,M>>- Specified by:
discardRin interfaceMonadT<M extends MonadRec<?,M>,A,WriterT<W,M extends MonadRec<?,M>,?>,WriterT<W,?,?>>- Specified by:
discardRin interfaceMonadWriter<W,M extends MonadRec<?,M>,A>- Type Parameters:
B- the type of appB's parameter- Parameters:
appB- the other Applicative- Returns:
- this Applicative
-
writerT
public static <W,M extends MonadRec<?,M>,A> WriterT<W,M,A> writerT(MonadRec<Tuple2<A,W>,M> maw)
-
pureWriterT
public static <W,M extends MonadRec<?,M>> Pure<WriterT<W,M,?>> pureWriterT(Pure<M> pureM)
-
-