Alex d7ffe0b7ec
DelazJ bonification
Co-authored-by: Harrissou Sant-anna <delazj@gmail.com>
2022-01-11 11:17:49 -05:00

16 lines
345 B
Plaintext

{
"name": "array_length",
"type": "function",
"groups": ["Arrays"],
"description": "Returns the number of elements of an array.",
"arguments": [{
"arg": "array",
"description": "an array"
}],
"examples": [{
"expression": "array_length(array(1,2,3))",
"returns": "3"
}],
"tags": ["elements", "array", "count"]
}