Documentation
¶
Overview ¶
Package luajson is a simple JSON encoder/decoder for gopher-lua.
Documentation ¶
The following functions are exposed by the library:
decode(string): Decodes a JSON string. Returns nil and an error string if
the string could not be decoded.
encode(value): Encodes a value into a JSON string. Returns nil and an error
string if the value could not be encoded.
Example ¶
Below is an example usage of the library:
import (
luajson "github.com/davars/luajson"
)
L := lua.NewState()
luajson.Preload(s)
Index ¶
Constants ¶
View Source
const LibName = "cjson"
Variables ¶
This section is empty.
Functions ¶
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.