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)
Syntaxpublic override IntPtr _mp_d_intptr { get; set; }
Public Overrides Property _mp_d_intptr As IntPtr
Get
Set
public:
virtual property IntPtr _mp_d_intptr {
IntPtr get () override;
void set (IntPtr value) override;
}
abstract _mp_d_intptr : IntPtr with get, set
override _mp_d_intptr : IntPtr with 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