LanguageExt.Core ► Effects ► Pipes ► Effect
Contents
- Effect <RT, A>
 - Value
 - Effect (Proxy<RT, Void, Unit, Unit, Void, A> value)
 - ToProxy ()
 - Bind <S> (Func<A, Proxy<RT, Void, Unit, Unit, Void, S>> f)
 - Map <S> (Func<A, S> f)
 - For <C1, C> (Func<Void, Proxy<RT, Void, Unit, C1, C, Unit>> body)
 - Action <S> (Proxy<RT, Void, Unit, Unit, Void, S> r)
 - PairEachRequestWithRespond <UOutA, AUInA> (Func<Void, Proxy<RT, UOutA, AUInA, Void, Unit, A>> lhs)
 - ReplaceRequest <UOutA, AUInA> (Func<Void, Proxy<RT, UOutA, AUInA, Unit, Void, Unit>> lhs)
 - PairEachRespondWithRequest <DInC, DOutC> (Func<Void, Proxy<RT, Unit, Void, DInC, DOutC, A>> rhs)
 - ReplaceRespond <DInC, DOutC> (Func<Void, Proxy<RT, Void, Unit, DInC, DOutC, Unit>> rhs)
 - Reflect ()
 - Observe ()
 - Deconstruct (out Proxy<RT, Void, Unit, Unit, Void, A> value)
 - SelectMany <B, C> (Func<A, Aff<RT, B>> bind, Func<A, B, C> project)
 - SelectMany <B, C> (Func<A, Aff<B>> bind, Func<A, B, C> project)
 - SelectMany <B, C> (Func<A, Eff<RT, B>> bind, Func<A, B, C> project)
 - SelectMany <B, C> (Func<A, Eff<B>> bind, Func<A, B, C> project)
 - & ( Effect<RT, A> lhs, Effect<RT, A> rhs)
 - Effect
 
Effects represent a 'fused' set of producer, pipes, and consumer into one type.
It neither can neither yield nor be awaiting, it represents an entirely closed effect system.
  Upstream | Downstream
      +---------+
      |         |
Void <==       <== Unit
      |         |
Unit ==>       ==> Void
      |    |    |
      +----|----+
           |
           A
Constructors
Methods
method Proxy<RT, Void, Unit, Unit, Void, A> ToProxy () Source #
Calling this will effectively cast the sub-type to the base.
This type wraps up a Proxy for convenience, and so it's a Proxy proxy.  So calling this method
isn't exactly the same as a cast operation, as it unwraps the Proxy from within.  It has the same effect
however, and removes a level of indirection
Parameters
| returns | A general   | |
method Proxy<RT, Void, Unit, Unit, Void, S> Bind <S> (Func<A, Proxy<RT, Void, Unit, Unit, Void, S>> f) Source #
Monadic bind operation, for chaining Proxy computations together.
Parameters
| type | B | The mapped bound value type  | 
| param | f | The bind function  | 
| returns | A new   | |
method Proxy<RT, Void, Unit, Unit, Void, S> Map <S> (Func<A, S> f) Source #
Lifts a pure function into the Proxy domain, causing it to map the bound value within
Parameters
| type | B | The mapped bound value type  | 
| param | f | The map function  | 
| returns | A new   | |
method Proxy<RT, Void, Unit, C1, C, A> For <C1, C> (Func<Void, Proxy<RT, Void, Unit, C1, C, Unit>> body) Source #
For(body) loops over the Proxy p replacing each yield with body
Parameters
| param | body | Any   | 
| returns | A new   | |
method Proxy<RT, Void, Unit, Unit, Void, S> Action <S> (Proxy<RT, Void, Unit, Unit, Void, S> r) Source #
Applicative action
Invokes this Proxy, then the Proxy r
Parameters
| param | r | 
  | 
method Proxy<RT, UOutA, AUInA, Unit, Void, A> PairEachRequestWithRespond <UOutA, AUInA> (Func<Void, Proxy<RT, UOutA, AUInA, Void, Unit, A>> lhs) Source #
Used by the various composition functions and when composing proxies with the | operator.  You usually
wouldn't need to call this directly, instead either pipe them using | or call Proxy.compose(lhs, rhs)
(f +>> p) pairs each 'request' in this with a 'respond' in lhs.
method Proxy<RT, UOutA, AUInA, Unit, Void, A> ReplaceRequest <UOutA, AUInA> (Func<Void, Proxy<RT, UOutA, AUInA, Unit, Void, Unit>> lhs) Source #
Used by the various composition functions and when composing proxies with the | operator.  You usually
wouldn't need to call this directly, instead either pipe them using | or call Proxy.compose(lhs, rhs)
method Proxy<RT, Void, Unit, DInC, DOutC, A> PairEachRespondWithRequest <DInC, DOutC> (Func<Void, Proxy<RT, Unit, Void, DInC, DOutC, A>> rhs) Source #
Used by the various composition functions and when composing proxies with the | operator.  You usually
wouldn't need to call this directly, instead either pipe them using | or call Proxy.compose(lhs, rhs)
method Proxy<RT, Void, Unit, DInC, DOutC, A> ReplaceRespond <DInC, DOutC> (Func<Void, Proxy<RT, Void, Unit, DInC, DOutC, Unit>> rhs) Source #
Used by the various composition functions and when composing proxies with the | operator.  You usually
wouldn't need to call this directly, instead either pipe them using | or call Proxy.compose(lhs, rhs)
method Proxy<RT, Void, Unit, Unit, Void, A> Reflect () Source #
Reverse the arrows of the Proxy to find its dual.
Parameters
| returns | The dual of   | |
method Proxy<RT, Void, Unit, Unit, Void, A> Observe () Source #
Observe(lift (Pure(r))) = Observe(Pure(r))
Observe(lift (m.Bind(f))) = Observe(lift(m.Bind(x => lift(f(x)))))
This correctness comes at a small cost to performance, so use this function sparingly. This function is a convenience for low-level pipes implementers. You do not need to use observe if you stick to the safe API.
method void Deconstruct (out Proxy<RT, Void, Unit, Unit, Void, A> value) Source #
method Aff<RT, C> SelectMany <B, C> (Func<A, Aff<RT, B>> bind, Func<A, B, C> project) Source #
Monadic bind operation, for chaining Effect and Aff computations together.
Parameters
| type | B | The mapped bound value type  | 
| param | f | The bind function  | 
| returns | A new   | |
method Aff<RT, C> SelectMany <B, C> (Func<A, Aff<B>> bind, Func<A, B, C> project) Source #
Monadic bind operation, for chaining Effect and Aff computations together.
Parameters
| type | B | The mapped bound value type  | 
| param | f | The bind function  | 
| returns | A new   | |
method Aff<RT, C> SelectMany <B, C> (Func<A, Eff<RT, B>> bind, Func<A, B, C> project) Source #
Monadic bind operation, for chaining Effect and Aff computations together.
Parameters
| type | B | The mapped bound value type  | 
| param | f | The bind function  | 
| returns | A new   | |
method Aff<RT, C> SelectMany <B, C> (Func<A, Eff<B>> bind, Func<A, B, C> project) Source #
Monadic bind operation, for chaining Effect and Aff computations together.
Parameters
| type | B | The mapped bound value type  | 
| param | f | The bind function  | 
| returns | A new   | |
Effects represent a 'fused' set of producer, pipes, and consumer into one type.
It neither can neither yield nor be awaiting, it represents an entirely closed effect system.
  Upstream | Downstream
      +---------+
      |         |
Void <==       <== Unit
      |         |
Unit ==>       ==> Void
      |    |    |
      +----|----+
           |
           A