1 | <?php |
||
8 | abstract class Distribution |
||
9 | { |
||
10 | |||
11 | abstract public function random(): ImmutableNumber; |
||
12 | |||
13 | /** |
||
14 | * @param int $sampleSize |
||
15 | * @return NumberCollection |
||
16 | */ |
||
17 | public function randomSample(int $sampleSize = 10): NumberCollection |
||
27 | |||
28 | abstract public function rangeRandom($min = 0, $max = PHP_INT_MAX, int $maxIterations = 20): ImmutableNumber; |
||
29 | |||
30 | } |