arraysConcat
Looking for the documentation on the newest versions of SIL Engine and the Simple Issue Language for Jira 8 for Server/Data Center? Click here !
Availability
This routine is available starting with SIL Engine™ 1.0.
Syntax
arraysConcat(array1, array2)
Description
Adds the elements of the second array to the first one.Parameters
Parameter name | Type | Required | Description |
---|---|---|---|
array1 | array | Yes | First array to be added. |
array2 | array | Yes | Second array to be added. |
Returns
array
Example
group={"user1", "user2"}; watchers += arraysConcat(watchers, group);
Adds the elements of the group array to the watchers array.
Notes
If the array types are incompatible, the routine returns error.
See also