# Object Functions

Object functions are used to manipulate objects/maps.

# KEYS

keys(obj)
1

Return an array containing the keys of the map.

example:

keys({"a":1, "b":2})
1

result:

["a","b"]
1

# VALUES

values(obj)
1

example:

values({"a":1, "b":2})
1

result:

[1,2]
1

Return an array containing the values of the map.

# OBJECT

object(keys, values)
1

Construct an object from an array of keys and an array of values. Keys must be an array of strings. Values must be an arbitrary array of the same length as keys.

example:

object(["a","b"],[1,2])
1

result:

{"a":1, "b":2}
1

# ZIP

zip(entries)
1

Construct an object from an array of entries. Each entry must itself be an array of size 2: the first element is the key (and must be a string), and the second element is the value.

example:

zip([["a",1],["b":2]])
1

result:

{"a":1, "b":2}
1

# ITEMS

items(obj)
1

Return an array containing the entries of object. Each entry is a 2-element array; the first is the key, the second is the value.

example:

items({"a":1, "b":2})
1

result:

[["a",1],["b":2]]
1

# OBJECT_CONSTRUCT

object_construct(key1, col1, key2, col2, ...)
1

Return a struct type object/map constructed by the arguments. The arguments are a series of key value pairs, thus the arguments count must be an odd number. The key must be a string, and the value can be of any type. If the value is null, the key/value pair will not present in the final object.

example:

object_construct("a", 1, "b", 2)
1

result:

{"a":1, "b":2}
1

# OBJECT_CONCAT

object_concat(obj1, obj2, ...)
1

This function concatenates the input objects and returns a new object. It requires a minimum of two input objects. In cases where there are duplicate attribute names among the input objects, the attribute from the last relevant object in the input list is selected and copied to the output object. To illustrate, here's an example:

object_concat({"a": 1}, {"b": 2}, {"b": 3})
1

result:

{"a":1, "b":3}
1

# ERASE

erase(obj, k)
1

If k is a string, return a new object where the key k is erased. If k is an array of strings, return a new object where the keys in k are erased.

erase({"baz": [1, 2, 3], "bar": 'hello world',"foo":'emq'}, 'foo')
1

result:

{"baz": [1, 2, 3], "bar": 'hello world'}
1