CpsIdentityMonad
Attributes
- Source
- CpsIdentityMonad.scala
- Graph
-
- Supertypes
-
trait CpsTryMonad[CpsIdentity]trait CpsTrySupport[CpsIdentity]trait CpsThrowMonad[CpsIdentity]trait CpsThrowSupport[CpsIdentity]trait CpsMonad[CpsIdentity]class Objecttrait Matchableclass AnyShow all
- Self type
-
CpsIdentityMonad.type
Members list
Type members
Inherited types
Attributes
- Inherited from:
- CpsTryMonadInstanceContext
- Source
- CpsMonadContext.scala
Attributes
- Inherited from:
- CpsMonad
- Source
- CpsMonad.scala
Value members
Concrete methods
represent error e
in monadic context.
bind combinator, which compose f
over fa
bind combinator, which compose f
over fa
Attributes
- Definition Classes
- Source
- CpsIdentityMonad.scala
flatMap over result of checked evaluation of A
flatMap over result of checked evaluation of A
Attributes
- Definition Classes
- Source
- CpsIdentityMonad.scala
map a function f
over fa
Pure - wrap value t
inside monad.
Pure - wrap value t
inside monad.
Note, that pure use eager evaluation, which is different from Haskell.
Attributes
- Definition Classes
- Source
- CpsIdentityMonad.scala
Returns a string representation of the object.
Returns a string representation of the object.
The default representation is platform dependent.
Attributes
- Returns
-
a string representation of the object.
- Definition Classes
-
Any
- Source
- CpsIdentityMonad.scala
Inherited methods
run op in the context environment.
run op in the context environment.
Attributes
- Definition Classes
- Inherited from:
- CpsTryMonadInstanceContext
- Source
- CpsMonadContext.scala
Wrap and flatten of monadic expression..
Attributes
- Inherited from:
- CpsMonad
- Source
- CpsMonad.scala
transform r
into pure value or error.
map over result of checked evaluation of A
map over result of checked evaluation of A
Attributes
- Inherited from:
- CpsTryMonad
- Source
- CpsMonad.scala
synonym for flatMapTry needed for processing awaits inside mapTry.
synonym for flatMapTry needed for processing awaits inside mapTry.
Attributes
- Inherited from:
- CpsTryMonad
- Source
- CpsMonad.scala
restore fa, ie if fa sucessful - return fa, otherwise apply fx to received error.
restore fa, ie if fa sucessful - return fa, otherwise apply fx to received error.
Attributes
- Inherited from:
- CpsTryMonad
- Source
- CpsMonad.scala
try to evaluate async operation and wrap successful or failed result into F
.
try to evaluate async operation and wrap successful or failed result into F
.
Attributes
- Inherited from:
- CpsTryMonad
- Source
- CpsMonad.scala
try to evaluate synchonious operation and wrap successful or failed result into F
.
try to evaluate synchonious operation and wrap successful or failed result into F
.
Attributes
- Inherited from:
- CpsTryMonad
- Source
- CpsMonad.scala
async shift of tryPure.
ensure that action
will run before getting value from fa
ensure that action
will run before getting value from fa
Attributes
- Inherited from:
- CpsTryMonad
- Source
- CpsMonad.scala
async shift of withAction
.
async shift of withAction
.
This method is substituted instead withAction, when we use await
inside withAction
argument.
Attributes
- Inherited from:
- CpsTryMonad
- Source
- CpsMonad.scala
return result of fa
after completition of action
.
return result of fa
after completition of action
.
Attributes
- Inherited from:
- CpsTryMonad
- Source
- CpsMonad.scala
Attributes
- Inherited from:
- CpsTrySupport
- Source
- CpsMonad.scala
Attributes
- Inherited from:
- CpsTrySupport
- Source
- CpsMonad.scala
Create monadic expression according to the default operation of choosen monad types. (i.e. delaying for effect monads, starting for eager monand, pure by default)
Create monadic expression according to the default operation of choosen monad types. (i.e. delaying for effect monads, starting for eager monand, pure by default)
Attributes
- Inherited from:
- CpsMonad
- Source
- CpsMonad.scala