Difference between revisions of "TIAAppend"
From SCAR Divi Manual
(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== | ||
− | *[[ | + | *[[TIADelete]] |
− | *[[ | + | *[[TIARemove]] |
− | *[[ | + | *[[TIARemoveEx]] |
[[Category:Functions]] | [[Category:Functions]] | ||
− | [[Category: | + | [[Category:TIA Functions]] |
[[Category:Array Functions]] | [[Category:Array Functions]] |
Revision as of 18: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