Difference between revisions of "AMin"

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

Latest revision as of 17:08, 23 April 2012

Redirect to: