Create a new map by applying the expression to each key value pair.
Name | Type | Description |
---|---|---|
map | map | map value |
expression | str | expression to apply (use '$' to refer to the item) |
Check if the key is contained in a map.
Name | Type | Description |
---|---|---|
map | map | map value |
key | str | key value |
Get the list of keys of a map.
Name | Type | Description |
---|---|---|
map | map | map value |
Create a list of the key-value pairs.
Name | Type | Description |
---|---|---|
map | map | map value |
Remove the key from a map and return the modified map.
Name | Type | Description |
---|---|---|
map | map | map value |
key | str | key value |
Create a map that only contains key-value pairs for which the condition succeeds.
Name | Type | Description |
---|---|---|
map | map | map value |
condition | str | condition to execute for each item (use '$' to refer to the key-value pair) |
Get the list of values of a map.
Name | Type | Description |
---|---|---|
map | map | map value |