Difference between revisions of "TIAMax"
From SCAR Divi Manual
(Created page with "==Definition== <source lang="scar" lines="false"> function TIAMax(const TIA: TIntArray): Integer; </source> ==Availability== SCAR Divi 3.34 > Current ==Description== Returns th...") |
|||
Line 8: | Line 8: | ||
==Description== | ==Description== | ||
− | Returns the largest number in a given '''TIA'''. An extended function with additional functionality is available as [[TIAMaxEx]]. | + | Returns the largest 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 [[TIAMaxEx]]. |
==Example== | ==Example== |
Revision as of 12:41, 23 April 2012
Definition
function TIAMax(const TIA: TIntArray): Integer;
Availability
SCAR Divi 3.34 > Current
Description
Returns the largest 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 TIAMaxEx.
Example
begin WriteLn(TIAMax([2, 4, 3, 6, 8, 5, 1, 2])); end.
Output:
8