Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The list of parameters in the definition of a UDR can be of any length (including 0) and their respective types can be any valid SIL™ type.

Example

Code Block
function zero(){
    return 0;
}

function doSomething(string s, number n1, number [] n2, boolean flag, string [] oneMore){
    ....
}

...