C.uint64_t(value)
Creates a new C Value of type uint64_t
. This function is a simplified wrapper around the Value constructor.
Return value
This function returns a ValueExample
local c = require 'c'
-- Defines a C Value of type "uint64_t", initialized with the value 18446744073709551615
local val = c.uint64_t(18446744073709551615)
-- Prints the C Value
print(val)