Difference between revisions of "CombineTIA"
From SCAR Divi Manual
(Created page with "==Definition== <source lang="scar" lines="false"> function CombineTIA(const TIA1, TIA2: TIntArray): TIntArray; </source> ==Availability== SCAR Divi 3.28 ==Description== Appends...") |
|||
Line 18: | Line 18: | ||
Output: | Output: | ||
− | + | 1,2,3,4 | |
==See Also== | ==See Also== |
Latest revision as of 13:29, 23 October 2011
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