vending-machine/mobile/node_modules/pure-rand/lib/esm/distribution/uniformFloat64.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/uniformFloat64.d.ts
/**
* Uniformly generate random 64-bit floating point values between 0 (included) and 1 (excluded)
*
* @remarks Generated values are multiples of 2**-53, providing 53 bits of randomness.
*
* @param rng - Instance of RandomGenerator to extract random values from
*
* @public
*/
declare function uniformFloat64(rng: RandomGenerator): number;
//#endregion
export { uniformFloat64 };