TIADelete

From SCAR Divi Manual
Revision as of 11:33, 24 October 2011 by Freddy (talk | contribs) (Created page with "==Definition== <source lang="scar" lines="false"> procedure TIADelete(var TIA: TIntArray; const Index: Integer); </source> ==Availability== SCAR Divi 3.28 > Current ==Descripti...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Definition

procedure TIADelete(var TIA: TIntArray; const Index: Integer);

Availability

SCAR Divi 3.28 > Current

Description

Deletes the integer at a given position Index in a given TIntArray TIA. If the index is outside of the array bounds, nothing happens.

Example

var
  TIA: TIntArray;

begin
  TIA := [1, 2, 3];
  TIADelete(TIA, 1);
  WriteLn(TIAToStr(TIA));
end.

Output:

1,3

See Also