1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-12-30 21:41:46 +00:00

lua_isnil() binding

This commit is contained in:
Pavel Labath 2010-02-16 16:46:16 +01:00
parent 8bc8d9d7b8
commit a152a32d66

View File

@ -193,6 +193,7 @@ namespace lua {
void insert(int index) throw() { lua_insert(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 isnil(int index) throw() { return lua_isnil(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 isstring(int index) throw() { return lua_isstring(cobj.get(), index); }