Name

Min —

Synopsis

int Min();

Description

Locates the element with the minimum value in the array

Returns

The element index (not value) containig the minimum

See Also

method.array.Max

Note

The "minimum value" is calculated invoking the class "less than or equal" operator. When creating a class make sure to implement basic operators (=, >, <, <=, >= etc) so that this and the Max() method can be applied.