Unit 'Math' Package
[Overview][Constants][Types][Classes][Procedures and functions][Index] [#rtl]

MaxIntValue

Return largest element in integer array.

Declaration

Source position: math.pp line 170

function MaxIntValue(

  const Data: array of Integer

):Integer;

Description

MaxIntValue returns the largest integer out of the Data array.

This function is provided for Delphi compatibility, use the maxvalue function instead.

Errors

None.

See also

maxvalue

  

Return largest value in array.

minvalue

  

Return smallest value in array.

minIntValue

  

Return smallest value in integer array.

Example

Program Example25;

{ Program to demonstrate the MaxIntValue function. }

{ Make sore integer is 32 bit}
{$mode objfpc}

Uses math;

Type
  TExArray = Array[1..100] of Integer;

Var
  I : Integer;
  ExArray : TExArray;

begin
  Randomize;
  for I:=low(exarray) to high(exarray) do
    ExArray[i]:=Random(I)-Random(100);
  Writeln(MaxIntValue(ExArray));
end.

Documentation generated on: Jul 24 2023