4 lines
123 B
TypeScript

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