ObjectType:jsonarray

From Lavish Software Wiki
Revision as of 14:07, 7 August 2019 by Lax (talk | contribs)
Jump to navigation Jump to search

Overview

Object Type Vitals
jsonarray
Defined By LavishScript
Inherits ObjectType:jsonvalue
Reduces To same as jsonvalue.AsString
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 array, 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. myJsonArray:Set[1,"{\"subValue\":12}"]
  • Add[json]: Adds a value to the end of the array, to a new JSON value of any type, e.g. myJsonArray:Add["{\"subValue\":12}"]
  • GetIterator[jsoniterator]: Sets a jsoniterator to iterate this JSON array
  • Erase[#]: Erases the nth value from the array, shifting later items toward 0
  • EraseByQuery[Query ID]: Erases items matching the query from the array, shifting later elements toward 0
  • EraseByQuery[Query ID,bool removeMatches]: Erases items either matching or not matching the query from the array (depending on the 2nd parameter), shifting later elements toward 0

See Also

LavishScript Object Types