Object/Class

cogx.compiler.parser.syntaxtree

UnpipelinedActuator

Related Docs: class UnpipelinedActuator | package syntaxtree

Permalink

object UnpipelinedActuator extends SemanticError

Factory for creating actuators that write fields to Scala arrays.

Linear Supertypes
SemanticError, CompilerError, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. UnpipelinedActuator
  2. SemanticError
  3. CompilerError
  4. AnyRef
  5. Any
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Value Members

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

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

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

    Permalink
    Definition Classes
    AnyRef → Any
  4. def apply(source: Field, update: IteratorOfFloatFunc)(implicit tt: ClassTag[IteratorOfFloatFunc]): UnpipelinedActuator

    Permalink

    Create an actuator for a nD scalar field source that invokes a callback function 'newOutput' that is passed a ScalarFieldReader.

    Create an actuator for a nD scalar field source that invokes a callback function 'newOutput' that is passed a ScalarFieldReader.

    This preserves the legacy constructor "new Actuator(source, update)"

    Reset supplied: NO

    Implicit ClassTag included to disambiguate the signature from another using Function1[Iterator[Float],Unit]

    source

    The field to written output to an array each clock cycle.

    update

    A callback that is passed an iterator over the new values.

    returns

    An actuator that writes source to output each cycle.

  5. def apply(source: Field, update: IteratorOfFloatFunc, resetHook: () ⇒ Unit)(implicit tt: ClassTag[IteratorOfFloatFunc]): UnpipelinedActuator

    Permalink

    Create an actuator for a nD scalar field source that invokes a callback function 'newOutput' that is passed a ScalarFieldReader.

    Create an actuator for a nD scalar field source that invokes a callback function 'newOutput' that is passed a ScalarFieldReader.

    This preserves the legacy constructor "new Actuator(source, update, resetHook)"

    Reset supplied: YES

    Implicit ClassTag included to disambiguate the signature from another using Function1[Iterator[Float],Unit]

    source

    The field to written output to an array each clock cycle.

    update

    A callback that is passed an iterator over the new values.

    resetHook

    An optional callback function that is called upon reset.

    returns

    An actuator that writes source to output each cycle.

  6. def apply(source: Field, update: ScalarFieldReaderFunc): UnpipelinedActuator

    Permalink

    Create an actuator for a nD scalar field source that invokes a callback function 'newOutput' that is passed a ScalarFieldReader.

    Create an actuator for a nD scalar field source that invokes a callback function 'newOutput' that is passed a ScalarFieldReader.

    This preserves the legacy constructor "new Actuator(source, update)"

    Reset supplied: NO

    source

    The field to written output to an array each clock cycle.

    update

    A callback that is passed an iterator over the new values.

    returns

    An actuator that writes source to output each cycle.

  7. def apply(source: Field, update: ScalarFieldReaderFunc, resetHook: () ⇒ Unit): UnpipelinedActuator

    Permalink

    Create an actuator for a nD scalar field source that invokes a callback function 'newOutput' that is passed a ScalarFieldReader.

    Create an actuator for a nD scalar field source that invokes a callback function 'newOutput' that is passed a ScalarFieldReader.

    This preserves the legacy constructor "new Actuator(source, update, resetHook)"

    Reset supplied: YES

    source

    The field to written output to an array each clock cycle.

    update

    A callback that is passed an iterator over the new values.

    resetHook

    An optional callback function that is called upon reset.

    returns

    An actuator that writes source to output each cycle.

  8. def apply(source: Field, output: Array[Array[Array[Float]]]): UnpipelinedActuator

    Permalink

    Create an actuator for a 3D scalar field source that writes the output of that field to the array output which the user can access.

    Create an actuator for a 3D scalar field source that writes the output of that field to the array output which the user can access.

    Reset supplied: NO

    source

    The field to written output to an array each clock cycle.

    output

    The output array where field is written.

    returns

    An actuator that writes source to output each cycle.

  9. def apply(source: Field, output: Array[Array[Array[Float]]], resetHook: () ⇒ Unit): UnpipelinedActuator

    Permalink

    Create an actuator for a 3D scalar field source that writes the output of that field to the array output which the user can access.

    Create an actuator for a 3D scalar field source that writes the output of that field to the array output which the user can access.

    Reset supplied: YES

    source

    The field to written output to an array each clock cycle.

    output

    The output array where field is written.

    resetHook

    An optional callback function that is called upon reset.

    returns

    An actuator that writes source to output each cycle.

  10. def apply(source: Field, output: Array[Array[Float]]): UnpipelinedActuator

    Permalink

    Create an actuator for a 2D scalar field source that writes the output of that field to the array output which the user can access.

    Create an actuator for a 2D scalar field source that writes the output of that field to the array output which the user can access.

    Reset supplied: NO

    source

    The field to written output to an array each clock cycle.

    output

    The output array where field is written.

    returns

    An actuator that writes source to output each cycle.

  11. def apply(source: Field, output: Array[Array[Float]], resetHook: () ⇒ Unit): UnpipelinedActuator

    Permalink

    Create an actuator for a 2D scalar field source that writes the output of that field to the array output which the user can access.

    Create an actuator for a 2D scalar field source that writes the output of that field to the array output which the user can access.

    Reset supplied: YES

    source

    The field to written output to an array each clock cycle.

    output

    The output array where field is written.

    resetHook

    An optional callback function that is called upon reset.

    returns

    An actuator that writes source to output each cycle.

  12. def apply(source: Field, output: Array[Float]): UnpipelinedActuator

    Permalink

    Create an actuator for a 0D or 1D scalar field source that writes the output of that field to the array output which the user can access.

    Create an actuator for a 0D or 1D scalar field source that writes the output of that field to the array output which the user can access.

    Reset supplied: NO

    source

    The field to be written to an array each clock cycle.

    output

    The output array where field is written.

    returns

    An actuator that writes source to output each cycle.

  13. def apply(source: Field, output: Array[Float], resetHook: () ⇒ Unit): UnpipelinedActuator

    Permalink

    Create an actuator for a 0D or 1D scalar field source that writes the output of that field to the array output which the user can access.

    Create an actuator for a 0D or 1D scalar field source that writes the output of that field to the array output which the user can access.

    Reset supplied: YES

    source

    The field to be written to an array each clock cycle.

    output

    The output array where field is written.

    resetHook

    An optional callback function that is called upon reset.

    returns

    An actuator that writes source to output each cycle.

  14. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  15. def clone(): AnyRef

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

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

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  21. def internalError(message: String): Unit

    Permalink

    Declare an internal error described by message.

    Declare an internal error described by message.

    Definition Classes
    CompilerError
  22. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  23. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  24. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  25. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  26. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  27. def toString(): String

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

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from SemanticError

Inherited from CompilerError

Inherited from AnyRef

Inherited from Any

Ungrouped