Extensions.Util.Min

From emotive
Revision as of 13:46, 4 October 2018 by Hb (talk | contribs)
Jump to navigation Jump to search

Classification

Name Max
Short Description Gets the max of all its operands.
Class Term
Extension OTX Util extension
Group Util related terms
Exceptions -
Checker Rules -
Standard Compliant Yes

OTL Syntax

NumericTerm = Util.Max(NumericTerm);

Description

The OTX Max term is a NumericTerm which returns the max of all its operands.

Icons Note.png IMPORTANT — The actual return data type of the Max term depends on the data types of the operands: If one of the operands is Float, all Integer operands are automatically promoted to Float prior to the operation and the returned value is Float. Otherwise, the returned value is Integer.

Return Value

The Term returns the value, see table below.

Icons Note.png In OTX, Terms are categorized according to its return data type!
Data Type Description
Numeric The max of all its operands.

Properties

Name Data Type Class Default Cardinality Description
Numeral Numeric Term - [2..*] The numeric operands of the Max Term.

OTL Examples

Float Float1;

/// Flow

Float1 = Util.Max({0.99, 0.97, 0.93, 0.91, 0.9});

See also

Compare
CopyByteField
GetRandomNumber
IsInitialized
ListIndexOf
ListIndexOfAny
ListReverse
ListSort
Max
StringFormat