Versions Compared

Key

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

This routine is available starting with SIL Engine™ 1.0.

Syntax

arrayAddElement(arrayName, elem)

...

Note

If elem is not the same type as declared in the array definition, the routine returns error.

Info
titlekatl-commons SIL Engine™ 2.5 specific

Starting with version 2.5 is easier for you to just use the '+' operator to add elements to an array. array = array + element it is a simple and more meaningful way to express it. array += element is even better.

...