math docs
    Preparing search index...

    Type Alias Mulberry32

    State of a Mulberry32 PRNG: a single 32-bit accumulator that sample advances on each call. Create one with create.

    Unlike a closure-based generator, the state is a plain object — so it can be inspected, cloned (to fork a sequence), or serialised.

    type Mulberry32 = {
        a: number;
    }
    Index
    a
    a: number