CombineTIA
From SCAR Divi Manual
Definition
function CombineTIA(const TIA1, TIA2: TIntArray): TIntArray;
Availability
SCAR Divi 3.28
Description
Appends the given TIntArray TIA2 to end of the given TIntArray TIA1 and returns it.
Example
begin WriteLn(TIAToStr(CombineTIA([1, 2], [3, 4]))); end.
Output:
,1,2,3,4