RandomTIA

From SCAR Divi Manual
Revision as of 14:46, 21 November 2012 by Freddy (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Definition

function RandomTIA(const Count, Range: Integer): TIntArray;

Availability

SCAR Divi 3.38 > Current

Description

Generates a random TIntArray with a length specified by Count and the range [0,Range-1]. An extended version of this function is available as RandomTIAEx.

Example

begin
  WriteLn(TIAToStr(RandomTIA(10, 10)));
end.

See Also