Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Published by Scroll Versions from space WDESIGNER and version 24.0
Syntax
Code Block
languagenone
anArray.concatArrays(anotherArray_1, ..., anotherArray_n)
SemanticsConcatenates the elements of one or more arrays to the elements of anArray. The arrays to be concatenated can be NULL. If an array has NULL elements, these will be preserved after concatenation.
SubstitutablesanArrayCan be any variable or object attribute having the type Array. The arrays must not be NULL.
Error CodesFind the related error codes on System Errors.
BESM/2

One of the parameters of a vararg function is null. This error occurs if one of the arrays is NULL.

Examples
Code Block
languagenone
set anArray = anArray.concatArrays(anotherArray);
A new array is created containing all references to elements of the listed arrays. The reference anArray is changed to point to the new array.
rp
Panel
titleRelated Pages: