9 lines
314 B
Plaintext
Raw Normal View History

{
"name": "array_reverse",
"type": "function",
2020-07-02 01:46:48 +01:00
"groups": ["Arrays"],
"description": "Returns the given array with array values in reversed order.",
"arguments": [ {"arg":"array","description":"an array"} ],
2018-08-24 14:04:27 +02:00
"examples": [ { "expression":"array_reverse(array(2,4,0,10))", "returns":"[ 10, 0, 4, 2 ]"}]
}