LoadRandomSequence method
Load random values sequence, no values repeated, min and max included
Implementation
@override
NativeMemoryPointer<RInt> LoadRandomSequence(
int count,
int min,
int max,
) => _ffi.LoadRandomSequence(
count,
min,
max,
).asMemoryPointer();