Pcg64DxsmEngine.BitsPerWord Property

Gets the native word size in bits.

Definition

Namespace: Numerics.NET.Random.Engines
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.3.0
C#
public int BitsPerWord {
	get;
 }

Property Value

Int32
The number of bits in the native word type (typically 32 or 64).

Implements

IRandomEngine.BitsPerWord

Remarks

This value typically equals 8 * sizeof(T) for engines producing type T, and matches the engine's native semantics.

See Also