The Random\Randomizer class

(PHP 8 >= 8.2.0)

Introduzione

Provides a high-level API to the randomness provided by an Random\Engine.

Sommario della classe

namespace Random;
final class Randomizer {
/* Proprietà */
public readonly Random\Engine $engine;
/* Metodi */
public Random\Randomizer::getFloat(float $min, float $max, Random\IntervalBoundary $boundary = Random\IntervalBoundary::ClosedOpen): float
public Random\Randomizer::getInt(int $min, int $max): int
}

Proprietà

engine

The low-level source of randomness for the Random\Randomizer’s methods.

Indice dei contenuti

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top