NumpySeedSequence.NextUInt32 Method

Generates the next 32-bit unsigned integer from the entropy stream.

Definition

Namespace: Numerics.NET.Random.Seeding
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.3.0
C#
public override uint NextUInt32()

Return Value

UInt32
A 32-bit unsigned integer.

Remarks

This method cycles through the internal entropy pool, applying position-dependent mixing with the hash constant that is updated after each call. The output matches NumPy's generate_state(n, dtype=np.uint32) behavior.

See Also