Difference between revisions of "TIAAppend"

From SCAR Divi Manual
Jump to: navigation, search
(Created page with "==Definition== <source lang="scar" lines="false"> procedure TIAAppend(var TIA: TIntArray; const Int: Integer); </source> ==Availability== SCAR Divi 3.28 > Current ==Description...")
 
Line 26: Line 26:
  
 
==See Also==
 
==See Also==
*[[TPADelete]]
+
*[[TIADelete]]
*[[TPARemove]]
+
*[[TIARemove]]
*[[TPARemoveEx]]
+
*[[TIARemoveEx]]
  
 
[[Category:Functions]]
 
[[Category:Functions]]
[[Category:TPA Functions]]
+
[[Category:TIA Functions]]
 
[[Category:Array Functions]]
 
[[Category:Array Functions]]

Revision as of 19:46, 24 October 2011

Definition

procedure TIAAppend(var TIA: TIntArray; const Int: Integer);

Availability

SCAR Divi 3.28 > Current

Description

Appends the given integer Int to end of the given TIntArray TIA.

Example

var
  TIA: TIntArray;

begin
  TIA := [0, 1, 3];
  TIAAppend(TIA, 4);
  WriteLn(TIAToStr(TIA));
end.

Output:

0,1,3,4

See Also