ObjectType:jsonarray

From Lavish Software Wiki
Revision as of 14:48, 14 October 2019 by Lax (talk | contribs)
(diff) ←Older revision | view current revision (diff) | Newer revision→ (diff)
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

  • ForEach[code]: For each element in the array, performs the specified code. The ForEach Top-Level Object is used to access the Key or Value for each iteration
  • 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