LoadRandomSequence method

Pointer<Int> LoadRandomSequence(
  1. int count,
  2. int min,
  3. int max
)

Load random values sequence, no values repeated, min and max included

Implementation

Pointer<Int> LoadRandomSequence(int count, int min, int max)
  => _LoadRandomSequence(count, min, max);