Object/Trait

zio.stm

TRandom

Related Docs: trait TRandom | package stm

Permalink

object TRandom extends Serializable

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TRandom
  2. Serializable
  3. Serializable
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. val any: ZLayer[TRandom, Nothing, TRandom]

    Permalink
  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  8. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  9. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  10. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  11. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  12. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  13. val live: ZLayer[Random, Nothing, TRandom]

    Permalink
  14. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  15. val nextBoolean: URSTM[TRandom, Boolean]

    Permalink

    Generates a pseudo-random boolean inside a transaction.

  16. def nextBytes(length: ⇒ Int): URSTM[TRandom, Chunk[Byte]]

    Permalink

    Generates a pseudo-random chunk of bytes of the specified length inside a transaction.

  17. val nextDouble: URSTM[TRandom, Double]

    Permalink

    Generates a pseudo-random, uniformly distributed double between 0.0 and 1.0 inside a transaction.

  18. def nextDoubleBetween(minInclusive: Double, maxExclusive: Double): URSTM[TRandom, Double]

    Permalink

    Generates a pseudo-random double in the specified range inside a transaction.

  19. val nextFloat: URSTM[TRandom, Float]

    Permalink

    Generates a pseudo-random, uniformly distributed float between 0.0 and 1.0 inside a transaction.

  20. def nextFloatBetween(minInclusive: Float, maxExclusive: Float): URSTM[TRandom, Float]

    Permalink

    Generates a pseudo-random float in the specified range inside a transaction.

  21. val nextGaussian: URSTM[TRandom, Double]

    Permalink

    Generates a pseudo-random double from a normal distribution with mean 0.0 and standard deviation 1.0 inside a transaction.

  22. val nextInt: URSTM[TRandom, Int]

    Permalink

    Generates a pseudo-random integer inside a transaction.

  23. def nextIntBetween(minInclusive: Int, maxExclusive: Int): URSTM[TRandom, Int]

    Permalink

    Generates a pseudo-random integer in the specified range inside a transaction.

  24. def nextIntBounded(n: ⇒ Int): URSTM[TRandom, Int]

    Permalink

    Generates a pseudo-random integer between 0 (inclusive) and the specified value (exclusive) inside a transaction.

  25. val nextLong: URSTM[TRandom, Long]

    Permalink

    Generates a pseudo-random long inside a transaction.

  26. def nextLongBetween(minInclusive: Long, maxExclusive: Long): URSTM[TRandom, Long]

    Permalink

    Generates a pseudo-random long in the specified range inside a transaction.

  27. def nextLongBounded(n: ⇒ Long): URSTM[TRandom, Long]

    Permalink

    Generates a pseudo-random long between 0 (inclusive) and the specified value (exclusive) inside a transaction.

  28. val nextPrintableChar: URSTM[TRandom, Char]

    Permalink

    Generates a pseudo-random character from the ASCII range 33-126 inside a transaction.

  29. def nextString(length: ⇒ Int): URSTM[TRandom, String]

    Permalink

    Generates a pseudo-random string of the specified length inside a transaction.

  30. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  31. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  32. def setSeed(seed: Long): URSTM[TRandom, Unit]

    Permalink

    Sets the seed of this random number generator inside a transaction.

  33. def shuffle[A](list: ⇒ List[A]): URSTM[TRandom, List[A]]

    Permalink

    Randomly shuffles the specified list.

  34. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  35. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  36. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  37. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  38. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped