PushBoolean pushes a boolean value with value b onto the stack. http://www.lua.org/manual/5.2/manual.html#lua_pushboolean
(b bool)
| 1450 | // |
| 1451 | // http://www.lua.org/manual/5.2/manual.html#lua_pushboolean |
| 1452 | func (l *State) PushBoolean(b bool) { l.apiPush(b) } |
| 1453 | |
| 1454 | // PushLightUserData pushes a light user data onto the stack. Userdata |
| 1455 | // represents Go values in Lua. A light userdata is an interface{}. Its |