Difference between revisions of "ObjectType:jsonarray"

From Lavish Software Wiki
Jump to navigation Jump to search
Line 12: Line 12:
 
== Methods ==
 
== Methods ==
 
*'''Clear''': Clears all values from the array
 
*'''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. <tt>myJsonObject:Set[1,"{\"subValue\":12}"]</tt>
+
*'''Set['''#''','''json''']''': Sets a value within the array, to a new JSON value of any type, e.g. <tt>myJsonArray:Set[1,"{\"subValue\":12}"]</tt>
 +
*'''Add['''json''']''': Adds a value to the end of the array, to a new JSON value of any type, e.g. <tt>myJsonArray:Add["{\"subValue\":12}"]</tt>
 
*'''GetIterator['''jsoniterator''']''': Sets a jsoniterator to iterate this JSON array
 
*'''GetIterator['''jsoniterator''']''': Sets a jsoniterator to iterate this JSON array
  

Revision as of 18:20, 30 October 2018

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 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. 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

See Also

LavishScript Object Types