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...") |
(No difference)
|
Revision as of 11:06, 21 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