Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
546 B
Plaintext
Raw Permalink Normal View History

{
"name": "array_cat",
"type": "function",
2020-07-02 01:46:48 +01:00
"groups": ["Arrays"],
"description": "Returns an array containing all the given arrays concatenated.",
"variableLenArguments": true,
"arguments": [{
"arg": "array1",
"syntaxOnly": true
}, {
"arg": "array2",
"syntaxOnly": true
}, {
"arg": "array",
"descOnly": true,
"description": "an array"
}],
"examples": [{
"expression": "array_cat(array(1,2),array(2,3))",
"returns": "[ 1, 2, 2, 3 ]"
}],
2022-01-12 10:26:38 -05:00
"tags": ["concatenated", "arrays", "containing"]
}