RandomTIA

From SCAR Divi Manual
Revision as of 14:44, 21 November 2012 by Freddy (talk | contribs) (Created page with "==Definition== <source lang="scar" lines="false"> function RandomTIA(const Count, Range: Integer): TIntArray; </source> ==Availability== SCAR Divi 3.38 > Current ==Descripti...")
(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