Difference between revisions of "TIntArray"
From SCAR Divi Manual
(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...") |
(No difference)
|
Revision as of 18:02, 10 December 2012
Definition
TIntArray = array of Integer;
Availability
SCAR Divi 3.27 > Current
Aliases
- TIntegerArray (SCAR Divi 3.00 > 3.34)
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