Packages

t

dev.tauri.choam.random

SplittableRandom

trait SplittableRandom[F[_]] extends Random[F]

A splittable variant of cats.effect.std.Random.

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

Abstract Value Members

  1. abstract def betweenDouble(minInclusive: Double, maxExclusive: Double): F[Double]
    Definition Classes
    Random
  2. abstract def betweenFloat(minInclusive: Float, maxExclusive: Float): F[Float]
    Definition Classes
    Random
  3. abstract def betweenInt(minInclusive: Int, maxExclusive: Int): F[Int]
    Definition Classes
    Random
  4. abstract def betweenLong(minInclusive: Long, maxExclusive: Long): F[Long]
    Definition Classes
    Random
  5. abstract def nextAlphaNumeric: F[Char]
    Definition Classes
    Random
  6. abstract def nextBoolean: F[Boolean]
    Definition Classes
    Random
  7. abstract def nextBytes(n: Int): F[Array[Byte]]
    Definition Classes
    Random
  8. abstract def nextDouble: F[Double]
    Definition Classes
    Random
  9. abstract def nextFloat: F[Float]
    Definition Classes
    Random
  10. abstract def nextGaussian: F[Double]
    Definition Classes
    Random
  11. abstract def nextInt: F[Int]
    Definition Classes
    Random
  12. abstract def nextIntBounded(n: Int): F[Int]
    Definition Classes
    Random
  13. abstract def nextLong: F[Long]
    Definition Classes
    Random
  14. abstract def nextLongBounded(n: Long): F[Long]
    Definition Classes
    Random
  15. abstract def nextPrintableChar: F[Char]
    Definition Classes
    Random
  16. abstract def nextString(length: Int): F[String]
    Definition Classes
    Random
  17. abstract def shuffleList[A](l: List[A]): F[List[A]]
    Definition Classes
    Random
  18. abstract def shuffleVector[A](v: Vector[A]): F[Vector[A]]
    Definition Classes
    Random
  19. abstract def split: F[SplittableRandom[F]]

Concrete 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. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  6. def elementOf[A](xs: Iterable[A])(implicit ev: MonadThrow[F]): F[A]
    Definition Classes
    Random
  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  9. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  10. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  12. def mapK[G[_]](f: ~>[F, G]): Random[G]
    Definition Classes
    Random
  13. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  15. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  16. def oneOf[A](x: A, xs: A*)(implicit ev: Applicative[F]): F[A]
    Definition Classes
    Random
  17. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  18. def toString(): String
    Definition Classes
    AnyRef → Any
  19. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  20. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  21. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from Random[F]

Inherited from AnyRef

Inherited from Any

Ungrouped