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

16 lines
332 B
Plaintext
Raw Normal View History

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