Value.type readonly



The Value.type property gets the type of the C Value as a string.

Notes

Example

--! luart-extensions import c -- create a C boolean Value set to true local bool = c.bool(true) -- prints the Value type print("C Value type is "..bool.type)