System.Math.MinValue

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function MinValue(const Data: array of Single): Single;
function MinValue(const Data: array of Double): Double;
function MinValue(const Data: array of Extended): Extended;

C++

extern DELPHI_PACKAGE float __fastcall MinValue(const float *Data, const int Data_High)/* overload */;

Properties

Type Visibility Source Unit Parent
function public
System.Math.pas
System.Math.hpp
System.Math System.Math

Description

Returns smallest signed value in an array.

MinValue returns the smallest signed value in the Data array. The Data_Size parameter specifies the index of the last element in the array (one less than the total number of elements).

See Also