RW

object RW extends TxnDsl[RW]
class TxnDsl[RW]
class Object
trait Matchable
class Any
RW.type

Value members

Inherited methods

@inline
final def delay[A](a: => A): Txn[RW, A]
Inherited from:
TxnDsl
final def eval[A](c: CallbackTo[A]): Txn[RW, A]
Inherited from:
TxnDsl
@inline
final def none: Txn[RW, Option[Nothing]]
Inherited from:
TxnDsl
@inline
final def objectStore[K, V](s: Async[K, V]): Txn[RW, ObjectStore[K, Value]]
Inherited from:
TxnDsl
final def objectStore[K, V](s: Sync[K, V]): Txn[RW, ObjectStore[K, V]]
Inherited from:
TxnDsl
final def pure[A](a: A): Txn[RW, A]
Inherited from:
TxnDsl
@inline
final def sequence[G[_], A](txns: G[Txn[RW, A]])(implicit G: Traverse[G]): Txn[RW, G[A]]
Inherited from:
TxnDsl
@inline
final def sequenceIterable[F <: (Iterable), A](txns: => F[Txn[RW, A]])(implicit cbf: BuildFrom[F[Txn[RW, A]], A, F[A]]): Txn[RW, F[A]]
Inherited from:
TxnDsl
@inline
final def sequenceIterable_(txns: => Iterable[Txn[RW, Any]]): Txn[RW, Unit]
Inherited from:
TxnDsl
@inline
final def sequenceOption[A](o: => Option[Txn[RW, A]]): Txn[RW, Option[A]]
Inherited from:
TxnDsl
@inline
final def sequenceOption_(o: Option[Txn[RW, Any]]): Txn[RW, Unit]
Inherited from:
TxnDsl
final def suspend[A](a: => Txn[RW, A]): Txn[RW, A]
Inherited from:
TxnDsl
final def tailRec[A, B](a: A)(f: A => Txn[RW, Either[A, B]]): Txn[RW, B]
Inherited from:
TxnDsl
final def traverse[G[_], A, B](ga: G[A])(f: A => Txn[RW, B])(implicit G: Traverse[G]): Txn[RW, G[B]]
Inherited from:
TxnDsl
final def traverseIterable[F <: (Iterable), A, B](fa: => F[A])(f: A => Txn[RW, B])(implicit cbf: BuildFrom[F[A], B, F[B]]): Txn[RW, F[B]]
Inherited from:
TxnDsl
final def traverseIterable_[A](fa: => Iterable[A])(f: A => Txn[RW, Any]): Txn[RW, Unit]
Inherited from:
TxnDsl
final def traverseOption[A, B](o: => Option[A])(f: A => Txn[RW, B]): Txn[RW, Option[B]]
Inherited from:
TxnDsl
final def traverseOption_[A, B](o: => Option[A])(f: A => Txn[RW, B]): Txn[RW, Unit]
Inherited from:
TxnDsl
final def unit: Txn[RW, Unit]
Inherited from:
TxnDsl
@inline
final def unless[A](cond: Boolean)(txn: => Txn[RW, A]): Txn[RW, Option[A]]
Inherited from:
TxnDsl
@inline
final def unless_(cond: Boolean)(txn: => Txn[RW, Any]): Txn[RW, Unit]
Inherited from:
TxnDsl
final def when[A](cond: Boolean)(txn: => Txn[RW, A]): Txn[RW, Option[A]]
Inherited from:
TxnDsl
final def when_(cond: Boolean)(txn: => Txn[RW, Any]): Txn[RW, Unit]
Inherited from:
TxnDsl

Implicits

Implicits

implicit override def catsInstance: CatsInstance[RW]
Definition Classes