Files
2025-03-07 19:22:02 +01:00

4 lines
123 B
TypeScript

export type XorShift32 = () => number;
export const makexorshift32: () => XorShift32;
export const xorshift32: XorShift32;