How it works

The Instruction operation "max" returns the maximum value of any number of inputs.

"Max" Examples

Example 1: Simple Operation

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

Example 1: Simple Operation

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



Last Modified: Thu, 15 Jan 2015