Difference between revisions of "TIAMin"

From SCAR Divi Manual
Jump to: navigation, search
Line 15: Line 15:
 
   WriteLn(TIAMin([2, 4, 3, 6, 8, 5, 1, 2]));
 
   WriteLn(TIAMin([2, 4, 3, 6, 8, 5, 1, 2]));
 
end.
 
end.
 
 
</source>
 
</source>
  

Revision as of 13:53, 23 April 2012

Definition

function TIAMin(const TIA: TIntArray): Integer;

Availability

SCAR Divi 3.34 > Current

Description

Returns the smallest number in a given TIA. The function throws an exception if the size of the given TIA is 0. An extended function with additional functionality is available as TIAMinEx.

Example

begin
  WriteLn(TIAMin([2, 4, 3, 6, 8, 5, 1, 2]));
end.

Output:

1

See Also