Difference between revisions of "TIAAdd"

From SCAR Divi Manual
Jump to: navigation, search
Line 30: Line 30:
 
==See Also==
 
==See Also==
 
*[[TIAAddEx]]
 
*[[TIAAddEx]]
 +
*[[TIASubtract]]
 +
*[[TIAMultiply]]
 +
*[[TIADivide]]
  
 
[[Category:Functions]]
 
[[Category:Functions]]
 
[[Category:TIA Functions]]
 
[[Category:TIA Functions]]
 
[[Category:Array Functions]]
 
[[Category:Array Functions]]

Revision as of 20:18, 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