Генератор случайных чисел, используемый dart - PullRequest
0 голосов
/ 27 мая 2020

Знаете ли вы, какой генератор случайных чисел используется в методе nextInt класса Random на языке Dart?

https://api.dart.dev/stable/2.8.3/dart-math/Random/nextInt.html

В документации указано, что:

nextInt method

int nextInt (
int max
)

Generates a non-negative random integer uniformly distributed in the range from 0, inclusive, to max, exclusive.

Implementation note: The default implementation supports max values between 1 and (1<<32) inclusive.
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...