Unbounded

oxygen.test.Generator.Unbounded
sealed trait Unbounded[+A] extends Generator[A]

Attributes

Graph
Supertypes
trait Generator[A]
class Object
trait Matchable
class Any
Known subtypes
class ConcatUnbounded[A]
class FlatMapUnbounded[A, A2]
class MapUnbounded[A, A2]
class OfSeq[S, A]
class Rand[A]

Members list

Value members

Concrete methods

final override def streamN(n: Int): UStream[A]

Attributes

Definition Classes

Inherited methods

final def ++[A2 >: A](that: Generator[A2]): Generator[A2]

Attributes

Inherited from:
Generator
final def concat[A2 >: A](that: Generator[A2]): Generator[A2]

Attributes

Inherited from:
Generator
final def flatMap[B](f: A => Generator[B]): Generator[B]

Attributes

Inherited from:
Generator
final def genExhaustiveOrSized: UIO[Chunk[A]]

Attributes

Inherited from:
Generator
final def genExhaustiveOrSizedWithSize(size: Int): UIO[Chunk[A]]

Attributes

Inherited from:
Generator
def map[B](f: A => B): Generator[B]

Attributes

Inherited from:
Generator
final def streamSized: UStream[A]

Attributes

Inherited from:
Generator

Inherited and Abstract methods

def gen: UIO[A]

Attributes

Inherited from:
Generator
def genN(n: Int): UIO[Chunk[A]]

Attributes

Inherited from:
Generator
def streamExhaustiveOrSized: UStream[A]

Attributes

Inherited from:
Generator