vending-machine/mobile/node_modules/pure-rand/lib/distribution/uniformFloat32.d.ts
2026-04-03 06:07:13 +08:00

15 lines
498 B
TypeScript

import { t as RandomGenerator } from "../RandomGenerator-CKZRB3Fu.js";
//#region src/distribution/uniformFloat32.d.ts
/**
* Uniformly generate random 32-bit floating point values between 0 (included) and 1 (excluded)
*
* @remarks Generated values are multiples of 2**-24, providing 24 bits of randomness.
*
* @param rng - Instance of RandomGenerator to extract random values from
*
* @public
*/
declare function uniformFloat32(rng: RandomGenerator): number;
//#endregion
export { uniformFloat32 };