mp_ptr Constructor (UInt32) |
Creates a new array of limbs initialized with values in unmanaged memory.
Namespace:
Math.Gmp.Native
Assembly:
Math.Gmp.Native (in Math.Gmp.Native.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax public mp_ptr(
uint[] values
)
Public Sub New (
values As UInteger()
)
public:
mp_ptr(
array<unsigned int>^ values
)
new :
values : uint32[] -> mp_ptr
Parameters
- values
- Type: SystemUInt32
The values of the limbs.
Remarks
If there is not enough 32-bit words to fill out the most significant limb, it is padded with zeroes.
When done with the array, you must release the unmanaged memory by calling free.
See Also