gmp_lib.mp_uint_per_limb Field

GMP Native Interface for .NET

gmp_libmp_uint_per_limb Field
The number of 32-bit, unsigned integers per limb.

Namespace:  Math.Gmp.Native
Assembly:  Math.Gmp.Native (in Math.Gmp.Native.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public static readonly mp_size_t mp_uint_per_limb
Public Shared ReadOnly mp_uint_per_limb As mp_size_t
public:
static initonly mp_size_t mp_uint_per_limb
static val mp_uint_per_limb: mp_size_t

Field Value

Type: mp_size_t
Examples
mp_size_t uintsPerLimb = gmp_lib.mp_uint_per_limb;
Assert.AreEqual(uintsPerLimb, (mp_size_t)(IntPtr.Size / 4));
Dim uintsPerLimb As mp_size_t = gmp_lib.mp_uint_per_limb
Assert.AreEqual(uintsPerLimb, DirectCast(IntPtr.Size / 4, mp_size_t))

No code example is currently available or this language may not be supported.

No code example is currently available or this language may not be supported.

See Also