GMP Native Interface for .NET
mpf_t_mp_size Property |
The number of limbs currently in use, or the negative of that when representing a negative value.
Namespace: Math.Gmp.Native
Assembly: Math.Gmp.Native (in Math.Gmp.Native.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public override mp_size_t _mp_size { get; }
Public Overrides ReadOnly Property _mp_size As mp_size_t Get
public: virtual property mp_size_t _mp_size { mp_size_t get () override; }
abstract _mp_size : mp_size_t with get override _mp_size : mp_size_t with get
Property Value
Type: mp_size_tRemarks
Zero is represented by _mp_size and _mp_exp both set to zero, and in that case the mp_base._mp_d data is unused. (In the future _mp_exp might be undefined when representing zero.)
See Also