Difference between revisions of "ObjectType:jsonarray"

From Lavish Software Wiki
Jump to navigation Jump to search
(Created page with "== Overview == {{ObjectType-Vitals|jsonarray|LavishScript|ObjectType:jsonvalue|same as ToString|none|no|void *}} A '''jsonarray''' is a standard [https://www.json.org...")
(No difference)

Revision as of 13:54, 27 March 2018

Overview

Object Type Vitals
jsonarray
Defined By LavishScript
Inherits ObjectType:jsonvalue
Reduces To same as ToString
Variable Object Type none
Uses Sub-Types no
C/C++ Type void *

A jsonarray is a standard JSON array.

Members

  • ... Get[#]: Gets a value stored within this object, by its index (1-based)
  • ... Get[#,valueName2,...]: Gets a stored value multiple levels deep within jsonarrays and/or jsonobjects
  • uint Size: Allocated capacity of the array
  • uint Used: Total number of values currently in the array

Methods

  • Clear: Clears all values from the array
  • Set[#,json]: Sets a value within the array, to a new JSON value of any type, e.g. myJsonObject:Set[1,"{\"subValue\":12}"]
  • GetIterator[jsoniterator]: Sets a jsoniterator to iterate this JSON array

See Also