Skip to Content
Lua Quick Start Guide
book

Lua Quick Start Guide

by Gabor Szauer
July 2018
Beginner
202 pages
5h 42m
English
Packt Publishing
Content preview from Lua Quick Start Guide

Reading from the stack

Lua provides several functions to retrieve values from the stack. The most common functions are listed here. The first argument to each of these functions is the Lua state, and the second argument is an integer, the index of the element being read:

  • int lua_toboolean(lua_State*, int): Returns true (1) or false (0).
  • lua_Number lua_tonumber(lua_State*, int): Returns a double.
  • lua_Integer lua_tointeger(lua_State*, int): Returns an integer.
  • const char* lua_tostring(lua_State*, int, size_t*): Returns a pointer to the internal Lua string. The last parameter is optional; if it's not NULL, the size of the string will be written to it.
  • size_t lua_objlen(lua_State*, int): Returns the same value as the # operator in Lua.

When ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Beginning Lua Programming

Beginning Lua Programming

Kurt Jung, Aaron Brown
Vim Masterclass

Vim Masterclass

Jason Cannon

Publisher Resources

ISBN: 9781789343229Supplemental Content