README ¶ inspect Usage local inspect = require("inspect") local table = {a={b=2}} local result = inspect(table, {newline="", indent=""}) if not(result == "{a = {b = 2}}") then error("inspect") end Expand ▾ Collapse ▴ Documentation ¶ Overview ¶ inspect.lua for gopher-lua Index ¶ func Loader(L *lua.LState) int func Preload(L *lua.LState) Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ func Loader ¶ func Loader(L *lua.LState) int Loader is the module loader function. func Preload ¶ func Preload(L *lua.LState) Preload adds inspect to the given Lua state's package.preload table. After it has been preloaded, it can be loaded using require: local inspect = require("inspect") Types ¶ This section is empty. Source Files ¶ View all Source files loader.go lua_const.go Directories ¶ Show internal Expand all Path Synopsis internal Click to show internal directories. Click to hide internal directories.