Array (Json function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
(Automatically generated page update)
 
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{Template:Json:Array subtitle}}
{{Template:Json:Array subtitle}}


This page is [[under construction]].
This function creates a Json object of the array type.
==Syntax==
==Syntax==
{{Template:Json:Array syntax}}
{{Template:Json:Array syntax}}
Line 10: Line 10:
<td>The optional class name in parentheses denotes a [[Notation conventions for methods#Constructors|virtual constructor]]. See [[#Usage notes|"Usage notes"]], below, for more information about invoking a virtual constructor.</td></tr>
<td>The optional class name in parentheses denotes a [[Notation conventions for methods#Constructors|virtual constructor]]. See [[#Usage notes|"Usage notes"]], below, for more information about invoking a virtual constructor.</td></tr>
<tr><th>itemList</th>
<tr><th>itemList</th>
<td><var>List</var> object<br/>This default value of this argument is [[??]].</td></tr>
<td>Zero or more Json objects (including null) that become the arrays original items.</td></tr>
</table>
</table>
==Usage notes==
==Usage notes==
<ul>
<li>If the array is to be dynamically populated, it might be easiest to simply specify Array with no parameters and ad items with the [[Add (Json function)|Add function]].</li>
<li>The added Json objects can be a mix of Json object types.</li>
</ul>
==Examples==
==Examples==
The following example creates a Json array whose items are a number, a boolean, a string, a null, and an object:
<p class="code">%json        is object json
...
%json = array(23.14069, false, "Gelfond", null, object)
</p>
==See also==
==See also==
{{Template:Json:Array footer}}
{{Template:Json:Array footer}}

Latest revision as of 21:15, 17 February 2015

Create an Array JSON object (Json class)

[Introduced in Model 204 7.6]


This function creates a Json object of the array type.

Syntax

%json = [%(Json):]Array[( [itemList])]

Syntax terms

%jsonJson object
[%(Json):] The optional class name in parentheses denotes a virtual constructor. See "Usage notes", below, for more information about invoking a virtual constructor.
itemList Zero or more Json objects (including null) that become the arrays original items.

Usage notes

  • If the array is to be dynamically populated, it might be easiest to simply specify Array with no parameters and ad items with the Add function.
  • The added Json objects can be a mix of Json object types.

Examples

The following example creates a Json array whose items are a number, a boolean, a string, a null, and an object:

%json is object json ... %json = array(23.14069, false, "Gelfond", null, object)

See also