rc-js-util
Version:
A collection of TS and C++ utilities to help writing performant and correct applications, achieved through strict typing and (removable) invariant checking.
11 lines • 322 B
TypeScript
import { IRandomNumberGenerator } from "./i-random-number-generator.js";
/**
* @public
* Random number generator.
*/
export declare class Mulberry32Generator implements IRandomNumberGenerator {
private seed;
constructor(seed: number);
getNext(): number;
}
//# sourceMappingURL=mulberry-32-generator.d.ts.map