PHP 8.5.4 Released!

Random\Randomizer クラス

(PHP 8 >= 8.2.0)

はじめに

Random\Engine が提供するランダムな値に対する、高レベルインターフェイスを提供します。

クラス概要

namespace Random;
final class Randomizer {
/* プロパティ */
public readonly Random\Engine $engine;
/* メソッド */
public Random\Randomizer::getFloat(float $min, float $max, Random\IntervalBoundary $boundary = Random\IntervalBoundary::ClosedOpen): float
public Random\Randomizer::getInt(int $min, int $max): int
}

プロパティ

engine

Random\Randomizer のメソッドに与えるランダムな値の、低レベルのソース。

目次

add a note

User Contributed Notes

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