org.cddcore.engine

Engine1Types

trait Engine1Types[P, R] extends EngineTypes[R]

Linear Supertypes
EngineTypes[R], AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Engine1Types
  2. EngineTypes
  3. AnyRef
  4. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. type A = (P, ROrException[R]) ⇒ Boolean

    A is a function from the parameters of the engine, and the result to a boolean.

    A is a function from the parameters of the engine, and the result to a boolean. It checks that some property is true

    Definition Classes
    Engine1TypesEngineTypes
  2. type AssertionClosure = ((P, ROrException[R]) ⇒ Boolean) ⇒ Boolean

    In order to call an A in the building code, when we don't know anything about the arity, we create a closure holding the parameters and reusltand pass the A function to it

    In order to call an A in the building code, when we don't know anything about the arity, we create a closure holding the parameters and reusltand pass the A function to it

    Definition Classes
    EngineTypes
  3. type B = (P) ⇒ Boolean

    B is a function from the parameters of the engine to a boolean.

    B is a function from the parameters of the engine to a boolean. It is effectively in calculating which scenario is to be used

    Definition Classes
    Engine1TypesEngineTypes
  4. type BecauseClosure = ((P) ⇒ Boolean) ⇒ Boolean

    In order to call a B in the building code, when we don't know anything about the arity, we create a closure holding the parameters and pass the B function to it

    In order to call a B in the building code, when we don't know anything about the arity, we create a closure holding the parameters and pass the B function to it

    Definition Classes
    EngineTypes
  5. type CfgClosure = ((P) ⇒ Unit) ⇒ Unit

    Definition Classes
    EngineTypes
  6. type CfgFn = (P) ⇒ Unit

    this is a function from the parameters to Unit e,g, (P1,P2,P3)=> Unit

    this is a function from the parameters to Unit e,g, (P1,P2,P3)=> Unit

    Definition Classes
    Engine1TypesEngineTypes
  7. type Code = CodeFn[(P) ⇒ Boolean, (P) ⇒ R, R]

    This is just a type synonym to save messy code

    This is just a type synonym to save messy code

    Definition Classes
    EngineTypes
  8. abstract type FragFn

    turns parameters into fragment results.

    turns parameters into fragment results. For example in XML in an engine 2 it might be (P1,P2)=>NodeSeq. I would love to know how to make this more type safe...

    Definition Classes
    EngineTypes
  9. abstract type ParamsToFragmentFn

    turns the params into a Fragment.

    turns the params into a Fragment. This can be modified by the fragment specifiers

    Definition Classes
    EngineTypes
  10. type RFn = (P) ⇒ R

    RFn is a function from the parameters of the engine to a result R.

    RFn is a function from the parameters of the engine to a result R. It is used to calculate the result of the engine

    Definition Classes
    Engine1TypesEngineTypes
  11. type RFnMaker = (Either[Exception, R]) ⇒ (P) ⇒ R

    Definition Classes
    EngineTypes
  12. abstract type RealScenarioBuilder

    Definition Classes
    EngineTypes
  13. type ResultClosure = ((P) ⇒ R) ⇒ R

    In order to call a RFN in the building code, when we don't know anything about the arity, we create a closure holding the parameters and pass the B function to it

    In order to call a RFN in the building code, when we don't know anything about the arity, we create a closure holding the parameters and pass the B function to it

    Definition Classes
    EngineTypes

Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

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

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def clone(): AnyRef

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

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

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

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

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

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

    Definition Classes
    Any
  14. def makeClosureForAssertion(params: List[Any], r: ROrException[R]): ((P, ROrException[R]) ⇒ Boolean) ⇒ Boolean

    Definition Classes
    Engine1TypesEngineTypes
  15. def makeClosureForBecause(params: List[Any]): ((P) ⇒ Boolean) ⇒ Boolean

    Definition Classes
    Engine1TypesEngineTypes
  16. def makeClosureForCfg(params: List[Any]): ((P) ⇒ Unit) ⇒ Unit

    Definition Classes
    Engine1TypesEngineTypes
  17. def makeClosureForResult(params: List[Any]): ((P) ⇒ R) ⇒ R

    Definition Classes
    Engine1TypesEngineTypes
  18. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  19. final def notify(): Unit

    Definition Classes
    AnyRef
  20. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  21. def rfnMaker: (Either[() ⇒ Exception, R]) ⇒ (P) ⇒ R

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

    Definition Classes
    AnyRef
  23. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from EngineTypes[R]

Inherited from AnyRef

Inherited from Any

Ungrouped