Skip to content

Commit 9569d4b

Browse files
committed
Update doc
1 parent 4cac5f6 commit 9569d4b

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

docs/language-definition.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -638,6 +638,14 @@ Equivalent to:
638638
len(filter(array, predicate))
639639
```
640640

641+
### concat(array1, array2[, ...]) {#concat}
642+
643+
Concatenates two or more arrays.
644+
645+
```expr
646+
concat([1, 2], [3, 4]) == [1, 2, 3, 4]
647+
```
648+
641649
### join(array[, delimiter]) {#join}
642650

643651
Joins an array of strings into a single string with the given delimiter.

0 commit comments

Comments
 (0)