LuaJsonArray:new
The constructor for a LuaJsonArray
object (creates a new LuaJsonArray
).
Syntax
LuaJsonArray:new( values )
Arguments
Argument | Description |
---|---|
values
|
(lua_json_type) The values to add to the array. Each value can be a Boolean, float, integer, string, LuaJsonArray, LuaJsonObject, LuaJsonValue, or nil. |
Returns
(LuaJsonArray). The new LuaJsonArray
object.
Example
The following is a simple JSON array:
[4, "a string", true]
To create a LuaJsonArray
object to represent this array:
local myJsonArray = LuaJsonArray:new(4,"a string",true)