math.arrayMin: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
(Adding documentation for math.arrayMin() function coming in 1.7)
 
No edit summary
 
(3 intermediate revisions by 2 users not shown)
Line 6: Line 6:


|usage=
|usage=
<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
[h: result = math.arrayMin(array)]
[h: result = math.arrayMin(array)]
</source>
</syntaxhighlight>


|examples=
|examples=
<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
[h: theArray = json.append("", 1, 3, 5.5, -4)]
[h: theArray = json.append("", 1, 3, 5.5, -4)]
[r: math.arrayMin(theArray)]
[r: math.arrayMin(theArray)]
</source>
</syntaxhighlight>
Returns:
Returns:
<code>-4</code>
<code>-4</code>

Latest revision as of 23:59, 14 March 2023

math.arrayMin() Function

Introduced in version 1.7
Find the minimum value in a JSON Array. Only allows numeric elements - any non-numeric values will produce an error.

Usage

[h: result = math.arrayMin(array)]

Examples

[h: theArray = json.append("", 1, 3, 5.5, -4)]
[r: math.arrayMin(theArray)]

Returns:

-4