How it works

The Instruction operation "min" returns the minimum value of any number of inputs.

"Min" Examples

Example 1: Simple Operation

The example below returns the highest value of all the inputs which is "5".
<instruction operation="min">
	<input value="36" />
	<input value="5" />
</instruction>
5

Example 1: Simple Operation

The example below returns the highest value of all the inputs which is "555".
<instruction operation="min">
	<input value="36" />
	<input value="1" />
        <input value="115" />
        <input value="555" />
</instruction>
1



Last Modified: Thu, 15 Jan 2015