La classe Random\Randomizer

(PHP 8 >= 8.2.0)

Introduction

Fournit une API de haut niveau pour l'aléatoire fourni par Random\Engine.

Synopsis de la classe

namespace Random;
final class Randomizer {
/* Propriétés */
public readonly Random\Engine $engine;
/* Méthodes */
public Random\Randomizer::getFloat(float $min, float $max, Random\IntervalBoundary $boundary = Random\IntervalBoundary::ClosedOpen): float
public Random\Randomizer::getInt(int $min, int $max): int
}

Propriétés

engine

Source d'aléatoire de bas niveau pour les méthodes de Random\Randomizer.

Sommaire

add a note

User Contributed Notes

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