| 450 | |
| 451 | |
| 452 | PLUTOLIB_API std::string pluto_optstring (lua_State *L, int arg, std::string def) { |
| 453 | if (lua_isnoneornil(L, arg)) |
| 454 | return def; |
| 455 | return pluto_checkstring(L, arg); |
| 456 | } |
| 457 | |
| 458 | |
| 459 | LUALIB_API lua_Number luaL_checknumber (lua_State *L, int arg) { |
nothing calls this directly
no outgoing calls
no test coverage detected