gmp_libmpf_set_ui Method |
Namespace: Math.Gmp.Native
public static void mpf_set_ui( mpf_t rop, uint op )
Public Shared Sub mpf_set_ui ( rop As mpf_t, op As UInteger )
public: static void mpf_set_ui( mpf_t^ rop, unsigned int op )
static member mpf_set_ui : rop : mpf_t * op : uint32 -> unit
// Create and initialize a new floating-point number. mpf_t x = new mpf_t(); gmp_lib.mpf_init2(x, 128U); // Set x to 100. gmp_lib.mpf_set_ui(x, 100U); // Assert that the value of x is 100. Assert.IsTrue(gmp_lib.mpf_get_d(x) == 100.0); // Release unmanaged memory allocated for x. gmp_lib.mpf_clear(x);
' Create and initialize a new floating-point number. Dim x As New mpf_t() gmp_lib.mpf_init2(x, 128UI) ' Set x to 100. gmp_lib.mpf_set_ui(x, 100UI) ' Assert that the value of x is 100. Assert.IsTrue(gmp_lib.mpf_get_d(x) = 100.0) ' Release unmanaged memory allocated for x. gmp_lib.mpf_clear(x)
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.