mirror of
https://github.com/Llewellynvdm/conky.git
synced 2025-01-02 14:31:57 +00:00
lua_isnil() binding
This commit is contained in:
parent
8bc8d9d7b8
commit
a152a32d66
@ -193,6 +193,7 @@ namespace lua {
|
|||||||
void insert(int index) throw() { lua_insert(cobj.get(), index); }
|
void insert(int index) throw() { lua_insert(cobj.get(), index); }
|
||||||
bool isfunction(int index) throw() { return lua_isfunction(cobj.get(), index); }
|
bool isfunction(int index) throw() { return lua_isfunction(cobj.get(), index); }
|
||||||
bool islightuserdata(int index) throw() { return lua_islightuserdata(cobj.get(), index); }
|
bool islightuserdata(int index) throw() { return lua_islightuserdata(cobj.get(), index); }
|
||||||
|
bool isnil(int index) throw() { return lua_isnil(cobj.get(), index); }
|
||||||
bool isnone(int index) throw() { return lua_isnone(cobj.get(), index); }
|
bool isnone(int index) throw() { return lua_isnone(cobj.get(), index); }
|
||||||
bool isnumber(int index) throw() { return lua_isnumber(cobj.get(), index); }
|
bool isnumber(int index) throw() { return lua_isnumber(cobj.get(), index); }
|
||||||
bool isstring(int index) throw() { return lua_isstring(cobj.get(), index); }
|
bool isstring(int index) throw() { return lua_isstring(cobj.get(), index); }
|
||||||
|
Loading…
Reference in New Issue
Block a user