Harrissou Sant-anna 55f7402ab0 Show more expression functions examples
also fix typo
2021-11-05 07:23:19 +11:00

11 lines
518 B
Plaintext

{
"name": "array_find",
"type": "function",
"groups": ["Arrays"],
"description": "Returns the lowest index (0 for the first one) of a value within an array. Returns -1 if the value is not found.",
"arguments": [ {"arg":"array","description":"an array"},
{"arg":"value","description":"the value to search"}],
"examples": [ { "expression":"array_find(array('a', 'b', 'c'), 'b')", "returns":"1"},
{ "expression":"array_find(array('a', 'b', 'c', 'b'), 'b')", "returns":"1"}]
}