Difference between revisions of "TIntArray"

From SCAR Divi Manual
Jump to: navigation, search
(Created page with "==Definition== <source lang="scar" lines="false"> TIntArray = array of Integer; </source> ==Availability== SCAR Divi 3.27 > Current ===Aliases=== *TIntegerArray (SCAR Divi 3...")
 
 
Line 8: Line 8:
  
 
===Aliases===
 
===Aliases===
*TIntegerArray (SCAR Divi 3.00 > 3.34)
+
*TIntegerArray (SCAR Divi 3.00 > 3.34 & 3.38 > Current)
  
 
==Description==
 
==Description==

Latest revision as of 17:07, 12 December 2012

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