[Overview][Constants][Types][Classes][Procedures and functions] Reference for unit 'math' (#rtl)

InRange

Check whether value is in range.

Declaration

Source position: line 0

function InRange(

  const AValue: Integer;

  const AMin: Integer;

  const AMax: Integer

):Boolean;

function InRange(

  const AValue: Int64;

  const AMin: Int64;

  const AMax: Int64

):Boolean;

Description

InRangereturns Trueif AValueis in the range AMin..AMax. It returns Falseif Valuelies outside the specified range.

See also

EnsureRange

  

Change value to it falls in specified range.