Difference between revisions of "AMax"

From SCAR Divi Manual
Jump to: navigation, search
(Created page with "==Definition== <source lang="scar" lines="false"> function AMax(Data: TIntegerArray): Integer; </source> ==Availability== SCAR Divi 3.00 > Current ==Description== Returns the l...")
 
(Redirected page to TIAMax)
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
==Definition==
+
#REDIRECT [[TIAMax]]
<source lang="scar" lines="false">
 
function AMax(Data: TIntegerArray): Integer;
 
</source>
 
  
==Availability==
+
[[Category:Deprecated Functions]]
SCAR Divi 3.00 > Current
 
 
 
==Description==
 
Returns the largest of a given [[TIntegerArray]] of values '''Data'''.
 
 
 
==Example==
 
<source lang="scar">
 
begin
 
  WriteLn(AMax([1, 2, 3, 4]));
 
end.
 
</source>
 
 
 
Output:
 
4
 
 
 
==See Also==
 
*[[AMin]]
 
*[[AMaxE]]
 
*[[Max]]
 
*[[MaxE]]
 
 
 
[[Category:Functions]]
 
[[Category:Math Functions]]
 

Latest revision as of 17:08, 23 April 2012

Redirect to: