cps
Type members
Classlikes
AsynsShift is a marker base trait for typeclass, which provides 'shifted' variants of the hight-order methods
of T,
which called when we need to pass a cps-transformed function as an argument for this method.
AsynsShift is a marker base trait for typeclass, which provides 'shifted' variants of the hight-order methods
of T,
which called when we need to pass a cps-transformed function as an argument for this method.
The general convention is next:
- Let us have object
O
and methodm(f: A=>B):R
which accept hight-order argumentf: A=>B.
(for example - map in List). - If we want to defined transformation of argument for any monad F, we should define the
AsyncShift[O]
with methodm[F[_],...](o:O, m:CpsMonad[F])(f: A=>F[B])
. - Return type of this method can be F[R] or R or AsyncSubst[R].
Also we should define a given instance of AsyncShift[O], visible from our async block. I.e. implementation for our list will look as:
class MyShiftedList[T] extentds AsyncShift[List[T]] {
def map[F[_],S](m:CpsMonad[M], c:List[T])(f: T=>F[S]): F[List[T]] =
... // implementation here
}
transparent inline given myShiftedList[T]: AsyncShift[List[T]] = MyShiftedList[T]()
After this, you can freely use awaits inside "List.map":
async {
....
val fetched = uris.map(uri => await(fetch(uri)))
...
}
see https://rssh.github.io/dotty-cps-async/HighOrderFunctions.html
- Companion:
- object
- Source:
- AsyncShift.scala
Companion object where defined given AsyncShift instances for Scala standard library objects.
Companion object where defined given AsyncShift instances for Scala standard library objects.
- See also:
[cps.AsyncShift]
- Companion:
- class
- Source:
- AsyncShift.scala
Marker interface for forcing monad evaluation before discard.
Useful for pure effect monads.
AwaitValueDiscard[F,T].apply(ft)
is transformed to await(ft)
during evaluation of async macro.
Marker interface for forcing monad evaluation before discard.
Useful for pure effect monads.
AwaitValueDiscard[F,T].apply(ft)
is transformed to await(ft)
during evaluation of async macro.
- Source:
- ValueDiscard.scala
Monad, which is compatible with passing data via callbacks.
Monad, which is compatible with passing data via callbacks.
Interoperability with Future: allows
async[F]{ .. await[Future](..) ... }
- Companion:
- object
- Source:
- CpsMonad.scala
Marker typeclass for wrappers, which we can await. Such traits can be not monads itself (for example, its impossible to set monad structure over js.Promise) but can be convertable into cps monads.
Marker typeclass for wrappers, which we can await. Such traits can be not monads itself (for example, its impossible to set monad structure over js.Promise) but can be convertable into cps monads.
- Source:
- CpsMonad.scala
Marker trait for concurrent effect monads.
Marker trait for concurrent effect monads.
- Source:
- CpsMonad.scala
Monad, where we can define an effect of starting operation in different execution flow.
Monad, where we can define an effect of starting operation in different execution flow.
- Companion:
- object
- Source:
- CpsMonad.scala
Base trait of CpsContextMonad which provide Ctx
as a monad context
Mixin this trait into your CosMonad in cases, when you monad have internal API
and you potentially want to use moand context as generic type.
Base trait of CpsContextMonad which provide Ctx
as a monad context
Mixin this trait into your CosMonad in cases, when you monad have internal API
and you potentially want to use moand context as generic type.
- Source:
- CpsMonadContext.scala
Marker trait, which mark effect monad, where actual evaluation of expression happens after building a monad, during effect evaluation stage.
Marker trait, which mark effect monad, where actual evaluation of expression happens after building a monad, during effect evaluation stage.
evaluation of expression inside async block always delayed.
- Source:
- CpsMonad.scala
Basic CpsMonad operations. Implementing this typeclass is enough to use async/await with supports of basic control-flow constructions (if, loops, but no exceptions).
Basic CpsMonad operations. Implementing this typeclass is enough to use async/await with supports of basic control-flow constructions (if, loops, but no exceptions).
- Companion:
- object
- Source:
- CpsMonad.scala
Base for context operations inside monad
Base for context operations inside monad
- Source:
- CpsMonadContext.scala
CpsMonadConversion -- conversion from F[_]
to G[_]
.
If the given instance of such morphism exists, then await[F]
can be used inside async[G]
CpsMonadConversion -- conversion from F[_]
to G[_]
.
If the given instance of such morphism exists, then await[F]
can be used inside async[G]
- See also:
- Source:
- CpsMonadConversion.scala
Trait for minimal monad context, which provides an instance of CpsMonad. Mixin this trait into your monad in cases, when you monad have no internal API.
Trait for minimal monad context, which provides an instance of CpsMonad. Mixin this trait into your monad in cases, when you monad have no internal API.
- Source:
- CpsMonadContext.scala
- Source:
- CpsMonadContext.scala
How this monad can be memoized.
How this monad can be memoized.
- Companion:
- object
- Source:
- CpsMonadMemoization.scala
marker trait for context with NOOP intercaprAwait operation
marker trait for context with NOOP intercaprAwait operation
- Source:
- CpsMonadContext.scala
Monad, where we can spawn some event and be sure that one be evaluated, event if we drop result.
Monad, where we can spawn some event and be sure that one be evaluated, event if we drop result.
Interoperability with Future: allows
async[Future]{
...
await[F](..)
...
}
- Companion:
- object
- Source:
- CpsMonad.scala
If you monad supports this typeclass, than you can use try/catch/finally inside await.
If you monad supports this typeclass, than you can use try/catch/finally inside await.
- Companion:
- object
- Source:
- CpsMonad.scala
When cps.customValueDiscard is on,
value can be discarded only for types T
for which exists ValueDiscard[T]
When cps.customValueDiscard is on,
value can be discarded only for types T
for which exists ValueDiscard[T]
- Companion:
- object
- Source:
- ValueDiscard.scala
marker object for value discarding. When this object is imported into current scope, then discarding values inside async block is translated to summon[ValueDiscard[T]].apply()
marker object for value discarding. When this object is imported into current scope, then discarding values inside async block is translated to summon[ValueDiscard[T]].apply()
- Source:
- ValueDiscard.scala
marker object for enabling warning about discarding non-primitve values without custom discard.
marker object for enabling warning about discarding non-primitve values without custom discard.
- Source:
- ValueDiscard.scala
Value members
Concrete methods
async block, which can contains awaits. better look on this as the first part of the next signature:
async block, which can contains awaits. better look on this as the first part of the next signature:
async[F](using CpsMonad[F])[T](inline body:T):F[T]
i.e. async return a transitional object, which accepts body and perform async transform with the given
CpsMonad[F]
.
- Source:
- Async.scala
Generator syntax. usage:
Generator syntax. usage:
val s = asyncStream[fs.Stream[IO,Int]] { out =>
for(i <- 1 to N) out.emit(i)
}
- Source:
- AsyncStream.scala
Pseudofunction, which can be used inside async block, to 'await' (i.e. receive value of t:T
from ft:F[T]
).
Pseudofunction, which can be used inside async block, to 'await' (i.e. receive value of t:T
from ft:F[T]
).
- Source:
- Async.scala
Givens
Givens
marker object for value discarding. When this object is imported into current scope, then discarding values inside async block is translated to summon[ValueDiscard[T]].apply()
marker object for value discarding. When this object is imported into current scope, then discarding values inside async block is translated to summon[ValueDiscard[T]].apply()
- Source:
- ValueDiscard.scala
marker object for enabling warning about discarding non-primitve values without custom discard.
marker object for enabling warning about discarding non-primitve values without custom discard.
- Source:
- ValueDiscard.scala