Difference between revisions of "NXSL:min"

From NetXMS Wiki
Jump to navigation Jump to search
m (Text replacement - "^" to "{{deprecated}}")
 
Line 1: Line 1:
__NOTOC__
{{deprecated}}__NOTOC__
Returns minimal value from a list of values.
Returns minimal value from a list of values.



Latest revision as of 18:13, 13 September 2022

This Wiki is deprecated and we are are currrently migrating remaining pages into product documentation (Admin Guide, NXSL Guide)

Returns minimal value from a list of values.


Syntax

min(number1 [,number2] [,number n]);


Parameters

numbers separated by comma


Return Value

Minimal value of numbers.


Examples

min(2, 3, 4, 8)	->	2