blob: be382f21e793993082e8243c142d43d103d40653 [file] [log] [blame]
<table class="table">
<thead>
<tr>
<th style="width:25%">Function</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>map(key0, value0, key1, value1, ...)</td>
<td>Creates a map with the given key/value pairs.</td>
</tr>
<tr>
<td>map_concat(map, ...)</td>
<td>Returns the union of all the given maps</td>
</tr>
<tr>
<td>map_contains_key(map, key)</td>
<td>Returns true if the map contains the key.</td>
</tr>
<tr>
<td>map_entries(map)</td>
<td>Returns an unordered array of all entries in the given map.</td>
</tr>
<tr>
<td>map_from_arrays(keys, values)</td>
<td>Creates a map with a pair of the given key/value arrays. All elements
in keys should not be null</td>
</tr>
<tr>
<td>map_from_entries(arrayOfEntries)</td>
<td>Returns a map created from the given array of entries.</td>
</tr>
<tr>
<td>map_keys(map)</td>
<td>Returns an unordered array containing the keys of the map.</td>
</tr>
<tr>
<td>map_values(map)</td>
<td>Returns an unordered array containing the values of the map.</td>
</tr>
<tr>
<td>str_to_map(text[, pairDelim[, keyValueDelim]])</td>
<td>Creates a map after splitting the text into key/value pairs using delimiters. Default delimiters are ',' for `pairDelim` and ':' for `keyValueDelim`. Both `pairDelim` and `keyValueDelim` are treated as regular expressions.</td>
</tr>
</tbody>
</table>