Difference between revisions of "TIAAdd"

From SCAR Divi Manual
Jump to: navigation, search
(Created page with "==Definition== <source lang="scar" lines="false"> procedure TIAAdd(var TIA: TIntArray; const Addition: Integer); </source> ==Availability== SCAR Divi 3.38 > Current ===Alias...")
 
Line 1: Line 1:
 
==Definition==
 
==Definition==
 
<source lang="scar" lines="false">
 
<source lang="scar" lines="false">
procedure TIAAdd(var TIA: TIntArray; const Addition: Integer);
+
procedure TIAAdd(var TIA: TIntArray; const Value: Integer);
 
</source>
 
</source>
  
Line 11: Line 11:
  
 
==Description==
 
==Description==
Adds a given value '''Addition''' to every value in the [[TIntArray]] '''TIA'''. A function with extended functionality is available as [[TIAAddEx]].
+
Adds a given value '''Value''' to every value in the [[TIntArray]] '''TIA'''. A function with extended functionality is available as [[TIAAddEx]].
  
 
==Example==
 
==Example==

Revision as of 19:06, 10 December 2012

Definition

procedure TIAAdd(var TIA: TIntArray; const Value: Integer);

Availability

SCAR Divi 3.38 > Current

Aliases

  • OffsetTIA (SCAR Divi 3.34 > Current)

Description

Adds a given value Value to every value in the TIntArray TIA. A function with extended functionality is available as TIAAddEx.

Example

var
  TIA: TIntArray;  
 
begin
  TIA := [5, -7, 1, 6, 88];
  TIAAdd(TIA, 5);  
  WriteLn(TIAToStr(TIA));
end.

Output:

10,-2,6,11,93

See Also