Skip to content
  • Kenneth Moreland's avatar
    Add WholeArray* ControlSignature tags · 2ac8456b
    Kenneth Moreland authored
    The WholeArrayIn, WholeArrayInOut, and WholeArrayOut ControlSignature
    tags behave similarly to using an ExecObject tag with an
    ExecutionWholeArray or ExecutionWholeArrayConst object. However, the
    WholeArray* tags can simplify some implementations in two ways. First,
    it allows you to specify more precisely what data is passed in. You have
    to pass in an ArrayHandle or else an error will occur (as opposed to be
    able to pass in any type of execution object). Second, this allows you
    to easily pass in arrays stored in DynamicArrayHandle objects. The
    Invoke mechanism will automatically find the appropriate static class.
    This cannot be done easily with ExecutionWholeArray.
    2ac8456b