Add `merge` doc

This commit is contained in:
James Bardin 2016-08-02 09:33:08 -04:00
parent 39bbbb8da6
commit 068059ab3f
1 changed files with 5 additions and 0 deletions

View File

@ -193,6 +193,11 @@ The supported built-in functions are:
* `map("hello", "world")`
* `map("us-east", list("a", "b", "c"), "us-west", list("b", "c", "d"))`
* `merge(map1, map2, ...)` - Returns the union of 2 or more maps. The maps
are consumed in the order provided, and duplciate keys overwrite previous
entries.
* `${merge(map("a", "b"), map("c", "d"))}` returns `{"a": "b", "c": "d"}`
* `md5(string)` - Returns a (conventional) hexadecimal representation of the
MD5 hash of the given string.