TIntArray

From SCAR Divi Manual
Revision as of 16:07, 12 December 2012 by Freddy (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Definition

TIntArray = array of Integer;

Availability

SCAR Divi 3.27 > Current

Aliases

  • TIntegerArray (SCAR Divi 3.00 > 3.34 & 3.38 > Current)

Description

A dynamic array type based on the Integer type. There are many functions available to process these arrays.

Example

var
  TIA: TIntArray;

begin
  SetLength(TIA, 2);
  TIA[0] := 5;
  TIA[1] := 9;
  WriteLn(TIAToStr(TIA));
end.

Output:

5,9

See Also