lua_type¶
lua_type returns the type of a Lua value as a string, see type.
- ret = lua_type(luaValue)
Return Value
ret is one of the following strings: “nil”, “number”,
“string”, “boolean”, “table”, “function”, “thread”,
“userdata”.
Parameters
- luaValue
luaValue
History
Version |
Description |
|---|---|
R2016.0 |
New. |
See also
id-315195