Difference between revisions of "ObjectType:jsonvaluecontainer"

From Lavish Software Wiki
Jump to navigation Jump to search
(Created page with "== Overview == {{ObjectType-Vitals|jsonvaluecontainer|LavishScript|ObjectType:jsonvalue|same as AsString|ObjectType:jsonvaluecontainer|no|void *}} A '''jsonvalue...")
 
Line 1: Line 1:
 
== Overview ==
 
== Overview ==
{{ObjectType-Vitals|jsonvaluecontainer|[[LavishScript]]|[[ObjectType:jsonvalue]]|same as AsString|[[ObjectType:jsonvaluecontainer|jsonvaluecontainer]]|no|void *}}
+
{{ObjectType-Vitals|jsonvaluecontainer|[[LavishScript]]|[[ObjectType:jsonvalue|jsonvalue]]|same as AsString|[[ObjectType:jsonvaluecontainer|jsonvaluecontainer]]|no|void *}}
  
 
A '''jsonvaluecontainer''' is a mutable container for a json value
 
A '''jsonvaluecontainer''' is a mutable container for a json value
  
 
== Members ==
 
== Members ==
* [[ObjectType:string|string]] AsString: The contained value as a string
+
* [[ObjectType:string|string]] '''AsString''': The contained value as a string
* [[ObjectType:string|string]] AsJSON: The contained value as single-line JSON text
+
* [[ObjectType:string|string]] '''AsJSON''': The contained value as single-line JSON text
* [[ObjectType:string|string]] AsJSON[multiline]: The contained value as multiline JSON text
+
* [[ObjectType:string|string]] '''AsJSON[multiline]''': The contained value as multiline JSON text
* ... Value: The contained value
+
* [[ObjectType:jsonvalue|jsonvalue]] '''Value''': The contained value
* [[ObjectType:string|string]] Type: The type of JSON object stored; one of: null, object, string, number, array, true, false, integer. Note that while the JSON standard does not differentiate between floating-point numbers and integers, LavishScript does
+
* [[ObjectType:string|string]] '''Type''': The type of JSON object stored; one of: null, object, string, number, array, true, false, integer. Note that while the JSON standard does not differentiate between floating-point numbers and integers, LavishScript does
  
 
== Methods ==
 
== Methods ==
* SetValue[json]: Sets the contained json value, e.g. myJsonValueContainer:SetValue["{\"someValue\":17}"] will set myJsonValueContainer's value to a jsonobject that in turn contains one value
+
* '''SetValue['''json''']''': Sets the contained json value, e.g. myJsonValueContainer:SetValue["{\"someValue\":17}"] will set myJsonValueContainer's value to a jsonobject that in turn contains one value
* ParseFile[filename]: Sets the contained json value to the contents of a specified json file
+
* '''ParseFile['''filename''']''': Sets the contained json value to the contents of a specified json file
  
 
== See Also ==
 
== See Also ==
* [[LavishScript]]
+
{{LavishScript:ObjectType}}
 
 
[[Category:LavishScript]]
 
 
[[Category:JSON]]
 
[[Category:JSON]]

Revision as of 16:18, 8 July 2018

Overview

Object Type Vitals
jsonvaluecontainer
Defined By LavishScript
Inherits jsonvalue
Reduces To same as AsString
Variable Object Type jsonvaluecontainer
Uses Sub-Types no
C/C++ Type void *

A jsonvaluecontainer is a mutable container for a json value

Members

  • string AsString: The contained value as a string
  • string AsJSON: The contained value as single-line JSON text
  • string AsJSON[multiline]: The contained value as multiline JSON text
  • jsonvalue Value: The contained value
  • string Type: The type of JSON object stored; one of: null, object, string, number, array, true, false, integer. Note that while the JSON standard does not differentiate between floating-point numbers and integers, LavishScript does

Methods

  • SetValue[json]: Sets the contained json value, e.g. myJsonValueContainer:SetValue["{\"someValue\":17}"] will set myJsonValueContainer's value to a jsonobject that in turn contains one value
  • ParseFile[filename]: Sets the contained json value to the contents of a specified json file

See Also

LavishScript Object Types