package
1.17.3
Repository: https://github.com/xyproto/algernon.git
Documentation: pkg.go.dev

# Functions

Arguments2buffer retrieves all the arguments given to a Lua function and gather the strings in a buffer.
LValueMaps2table converts a []map[string]lua.LValue to a Lua table.
Map2table converts a map[string]string to a Lua table.
PprintToWriter outputs more informative information than the memory location.
Strings2table converts a string slice to a Lua table.
Table2interfaceMap converts a Lua table to a map[string]any If values are also tables, they are also attempted converted to map[string]any.
Table2interfaceMapGlua converts a Lua table to a map by using gluamapper.
Table2map converts a Lua table to **one** of the following types, depending on the content: map[string]string map[string]int map[int]string map[int]int If no suitable keys and values are found, a nil interface is returned.
Table2maps converts a Lua table to **all** of the following types, depending on the content: map[string]string map[string]int map[int]string map[int]int.