ModStateWithPropsFOps

final implicit
class ModStateWithPropsFOps[S, P](self: WriteWithProps[Sync, Async, P, S]) extends AnyVal
class AnyVal
trait Matchable
class Any

Value members

Concrete methods

def modStateWithPropsIn[F[_] : Async](mod: (S, P) => S)(implicit evidence$6: Async[F], dispatch: UnsafeSync[Sync]): F[Unit]

Like modState but completes with a Unit value after the state modification has been completed. In contrast, modState(mod).to[F] completes with a unit once the state modification has been enqueued.

Like modState but completes with a Unit value after the state modification has been completed. In contrast, modState(mod).to[F] completes with a unit once the state modification has been enqueued.

Provides access to both state and props.