Click or drag to resize
mpfr_t_mp_d_intptr Property
The _mp_d_intptr field is a pointer to the limbs, least significant limbs stored first.

Namespace:  Math.Mpfr.Native
Assembly:  Math.Mpfr.Native (in Math.Mpfr.Native.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public override IntPtr _mp_d_intptr { get; set; }

Property Value

Type: IntPtr
Remarks

The number of limbs in use is controlled by _mpfr_prec, namely ceil(_mpfr_prec / mp_bits_per_limb). Non-singular (i.e., different from NaN, Infinity or zero) values always have the most significant bit of the most significant limb set to 1. When the precision does not correspond to a whole number of limbs, the excess bits at the low end of the data are zeros.

See Also