Packages

sealed trait GeneratorNode[+O] extends GeneratorNodeFamily[HNil, O]

A formal node for describing recursive generation. Can have several inputList, encoded as an HList, but has just one output.

Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. GeneratorNode
  2. GeneratorNodeFamily
  3. AnyRef
  4. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract val output: RandomVar[O]

Concrete Value Members

  1. val outputFamily: RandomVar[O]

    the family of random variables for which this is a generation.

    the family of random variables for which this is a generation.

    Definition Classes
    GeneratorNodeGeneratorNodeFamily
  2. def pi[D, S >: O, T](conditionFamily: (D) => Sort[S, T], outputFamily: RandomVarFamily[::[D, HNil], T]): GeneratorNodeFamily[::[D, HNil], T]
  3. def piFmly[Dom <: HList, S >: O, T](conditionFamily: (Dom) => Sort[S, T], outputFamily: RandomVarFamily[Dom, T]): GeneratorNodeFamily[Dom, T]
  4. def |[S >: O, T](condition: Sort[S, T], output: RandomVar[T]): GeneratorNode[T]