lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


> I would check lua_type, instead of lua_isnil, just for safety.

Just as a side note: I don't like these checks for function type.
Every type is possibly callable.  What about tables that implement
the function tag method?  Using isnil to decide whether an object
was given or not is OK, but explicitly enforcing a function type
is IMHO wrong.

Ciao, ET.