json.union: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
m (Link to json.intersection)
(Rephrased description. Not a stub anymore.)
Line 1: Line 1:
{{stub|Examples of usage, clearer description.}}
{{MacroFunction
{{MacroFunction
|name=json.union
|name=json.union
|version=1.3b53
|version=1.3b53
|description=
|description=
Returns an [[JSON Array]] with the union of all of the [[JSON Object]] keys, or [[JSON Array]] values.  If a value or a key occurs in multiple different objects or arrays, it will not be placed in the output object or array.
Returns an [[JSON Array]] with the union of all of the [[JSON Object]] keys, or [[JSON Array]] values.  If a value or a key occurs in multiple different objects or arrays, it will only be placed once in the output object or array.


|usage=
|usage=

Revision as of 06:58, 12 July 2013

json.union() Function

Introduced in version 1.3b53
Returns an JSON Array with the union of all of the JSON Object keys, or JSON Array values. If a value or a key occurs in multiple different objects or arrays, it will only be placed once in the output object or array.

Usage

json.union(array, array, ...)
json.union(object, object, ...)

Parameters

Examples

  [h: array1 = json.append("",1,2,3,4)]
  [h: array2 = json.append("",3,4,5,6)]
  [r: json.union(array1,array2)]

Returns

"[1,2,3,4,5,6]"

See Also