Packages

final class STM[F[+_], +A] extends AnyRef

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. STM
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def *>[B](that: ⇒ STM[F, B]): STM[F, B]

    See zio.stm.ZSTM#*>

  4. def <*[B](that: ⇒ STM[F, B]): STM[F, A]

    See zio.stm.ZSTM#<*[*

  5. def <*>[B](that: ⇒ STM[F, B])(implicit zippable: Zippable[A, B]): STM[F, Out]

    See zio.stm.ZSTM#<*>

  6. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  9. def collect[B](pf: PartialFunction[A, B]): STM[F, B]

    See zio.stm.ZSTM#collect

  10. def commit(implicit R: Runtime[Any], A: Async[F], trace: Trace): F[A]

    See zio.stm.ZSTM#commit

  11. def const[B](b: ⇒ B): STM[F, B]
  12. def either: STM[F, Either[Throwable, A]]

    See zio.stm.ZSTM#either

  13. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  15. def filter(f: (A) ⇒ Boolean): STM[F, A]

    See zio.stm.ZSTM#withFilter

  16. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  17. def flatMap[B](f: (A) ⇒ STM[F, B]): STM[F, B]

    See zio.stm.ZSTM#flatMap

  18. def flatten[B](implicit ev: <:<[A, STM[F, B]]): STM[F, B]

    See zio.stm.ZSTM.flatten

  19. def fold[B](f: (Throwable) ⇒ B, g: (A) ⇒ B): STM[F, B]

    See zio.stm.ZSTM#fold

  20. def foldM[B](f: (Throwable) ⇒ STM[F, B], g: (A) ⇒ STM[F, B]): STM[F, B]

    See zio.stm.ZSTM#foldSTM

  21. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  22. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  23. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  24. def map[B](f: (A) ⇒ B): STM[F, B]

    See zio.stm.ZSTM#map

  25. def mapError[E1 <: Throwable](f: (Throwable) ⇒ E1): STM[F, A]

    See zio.stm.ZSTM#mapError

  26. def mapK[G[+_]]: STM[G, A]

    Switch from effect F to effect G.

  27. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  28. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  29. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  30. def option: STM[F, Option[A]]

    See zio.stm.ZSTM#option

  31. def orElse[A1 >: A](that: ⇒ STM[F, A1]): STM[F, A1]

    See zio.stm.ZSTM#orElse

  32. def orElseEither[B](that: ⇒ STM[F, B]): STM[F, Either[A, B]]

    See zio.stm.ZSTM#orElseEither

  33. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  34. def toString(): String
    Definition Classes
    AnyRef → Any
  35. def unit: STM[F, Unit]

    See zio.stm.ZSTM.unit

  36. def void: STM[F, Unit]

    See zio.stm.ZSTM.unit

  37. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  38. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  39. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  40. def withFilter(f: (A) ⇒ Boolean): STM[F, A]

    Same as filter

  41. def zip[B](that: ⇒ STM[F, B])(implicit zippable: Zippable[A, B]): STM[F, Out]

    See zio.stm.ZSTM#zip

  42. def zipLeft[B](that: ⇒ STM[F, B]): STM[F, A]

    See zio.stm.ZSTM#zipLeft

  43. def zipRight[B](that: ⇒ STM[F, B]): STM[F, B]

    See zio.stm.ZSTM#zipRight

  44. def zipWith[B, C](that: ⇒ STM[F, B])(f: (A, B) ⇒ C): STM[F, C]

    See zio.stm.ZSTM#zipWith

Inherited from AnyRef

Inherited from Any

Ungrouped