Instance Subscriptorlandos-nl.ikigajson 2.2.3IkigaJSON
subscript(_:)
JSONArray.swift:226subscript(index: Int) -> JSONValue { get set }
Other members in extension
Type members
init(
) Creates a new, empty JSONArray
init(arrayLiteral: JSONValue...
) Creates a new JSONArray from an array literal.
init(buffer: ByteBuffer
) throws Parses the buffer as a JSON Array and configures this JSONArray to index and represent the JSON data
init(data: Data
) throws Parses the data as a JSON Array and configures this JSONArray to index and represent the JSON data
init?(json: JSONValue?
) static func == (lhs: JSONArray, rhs: JSONArray
) -> Bool
Instance members
var count: Int
var data: Data
A textual (JSON formatted) representation of this JSONArray as
Foundation.Data
var jsonBuffer: ByteBuffer
The raw textual (JSON formatted) representation of this JSONArray
var string: String!
A list of all top-level keys within this JSONArray
func append(JSONValue
) func makeIterator(
) -> JSONArrayIterator