CombineTIA

From SCAR Divi Manual
Revision as of 14:29, 23 October 2011 by Freddy (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

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

See Also