json

package module
v0.0.0-...-dc47430 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 14, 2017 License: Unlicense Imports: 4 Imported by: 9

README

gopher-json GoDoc

Package json is a simple JSON encoder/decoder for gopher-lua.

License

Public domain.

Documentation

Overview

Package json 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:

L := lua.NewState()
luajson.Preload(s)

Index

Constants

View Source
const (
	// CJsonLibName defines the name for the cjson lib
	CJsonLibName = "cjson"
)

Variables

This section is empty.

Functions

func Loader

func Loader(L *lua.LState) int

Loader is the module loader function.

func OpenCJSON

func OpenCJSON(l *lua.LState) int

OpenCJSON opens the cjson lib

func Preload

func Preload(L *lua.LState)

Preload adds json to the given Lua state's package.preload table. After it has been preloaded, it can be loaded using require:

local json = require("json")

Types

This section is empty.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL