Packages

object Random extends Serializable

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

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. val any: ZLayer[Has[Random], Nothing, Has[Random]]
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  9. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  10. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  12. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  13. val live: Layer[Nothing, Has[Random]]
  14. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. val nextBoolean: URIO[Has[Random], Boolean]

    generates a pseudo-random boolean.

  16. def nextBytes(length: => Int): ZIO[Has[Random], Nothing, Chunk[Byte]]

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

  17. val nextDouble: URIO[Has[Random], Double]

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

  18. def nextDoubleBetween(minInclusive: => Double, maxExclusive: => Double): URIO[Has[Random], Double]

    Generates a pseudo-random double in the specified range.

  19. val nextFloat: URIO[Has[Random], Float]

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

  20. def nextFloatBetween(minInclusive: => Float, maxExclusive: => Float): URIO[Has[Random], Float]

    Generates a pseudo-random float in the specified range.

  21. val nextGaussian: URIO[Has[Random], Double]

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

  22. val nextInt: URIO[Has[Random], Int]

    Generates a pseudo-random integer.

  23. def nextIntBetween(minInclusive: => Int, maxExclusive: => Int): URIO[Has[Random], Int]

    Generates a pseudo-random integer in the specified range.

  24. def nextIntBounded(n: => Int): URIO[Has[Random], Int]

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

  25. val nextLong: URIO[Has[Random], Long]

    Generates a pseudo-random long.

  26. def nextLongBetween(minInclusive: => Long, maxExclusive: => Long): URIO[Has[Random], Long]

    Generates a pseudo-random long in the specified range.

  27. def nextLongBounded(n: => Long): URIO[Has[Random], Long]

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

  28. val nextPrintableChar: URIO[Has[Random], Char]

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

  29. def nextString(length: => Int): URIO[Has[Random], String]

    Generates a pseudo-random string of the specified length.

  30. val nextUUID: URIO[Has[Random], UUID]

    Generates psuedo-random universally unique identifiers.

  31. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  32. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  33. def setSeed(seed: => Long): URIO[Has[Random], Unit]

    Sets the seed of this random number generator.

  34. def shuffle[A](list: => List[A]): ZIO[Has[Random], Nothing, List[A]]

    Randomly shuffles the specified list.

  35. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  36. def toString(): String
    Definition Classes
    AnyRef → Any
  37. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  38. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  39. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  40. object RandomLive extends Random

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped