ποΈ cardinality
Returns the number of elements in a MAP value.
ποΈ distinct_map_keys
Removes duplicate keys from a map, because keys in a map must be unique in terms of semantics.
ποΈ element_at
Returns the value for the specified key from a key-value pair of a map.
ποΈ map_apply
Applies a [Lambda expression](../Lambda_expression.md) to the keys and values of the original Map and generates a new Map.
ποΈ map_concat
Returns the union of the input maps.
ποΈ map_filter
Filters key-value pairs in a map by applying a Boolean array or a [Lambda expression](../Lambda_expression.md) to each key-value pair.
ποΈ map_from_arrays
Creates a MAP value from the given pair of key item array and value item array.
ποΈ map_keys
Returns an array of all the keys in the specified map.
ποΈ map_size
Returns the number of elements in a MAP value.
ποΈ map_values
Returns an array of all the values in the specified map.
ποΈ transform_keys
Transforms keys in a map using a [Lambda expression](../Lambda_expression.md) and produces a new key for each entry in the map.
ποΈ transform_values
Transforms values in a map using a [Lambda expression](../Lambda_expression.md) and produces a new value for each entry in the map.