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

16 lines
328 B
Plaintext
Raw Normal View History

2017-07-06 19:58:02 +02:00
{
"name": "array_last",
"type": "function",
2020-07-02 01:46:48 +01:00
"groups": ["Arrays"],
2017-07-06 19:58:02 +02:00
"description": "Returns the last value of an array.",
"arguments": [{
"arg": "array",
"description": "an array"
}],
"examples": [{
"expression": "array_last(array('a','b','c'))",
"returns": "'c'"
}],
"tags": ["array", "last"]
2017-07-06 19:58:02 +02:00
}