PushUnsigned pushes n onto the stack. http://www.lua.org/manual/5.2/manual.html#lua_pushunsigned
(n uint)
| 1445 | // |
| 1446 | // http://www.lua.org/manual/5.2/manual.html#lua_pushunsigned |
| 1447 | func (l *State) PushUnsigned(n uint) { l.apiPush(float64(n)) } |
| 1448 | |
| 1449 | // PushBoolean pushes a boolean value with value b onto the stack. |
| 1450 | // |