This commit is contained in:
Harrissou Sant-anna 2019-08-22 15:50:28 +02:00 committed by Nyall Dawson
parent 538946ad08
commit bb8b1dd403

View File

@ -1,7 +1,7 @@
{ {
"name": "array_all", "name": "array_all",
"type": "function", "type": "function",
"description": "Returns true if an array contains the all values of a given array.", "description": "Returns true if an array contains all the values of a given array.",
"arguments": [ {"arg":"array_a","description":"an array"}, "arguments": [ {"arg":"array_a","description":"an array"},
{"arg":"array_b","description":"the array of values to search"}], {"arg":"array_b","description":"the array of values to search"}],
"examples": [ { "expression":"array_all(array(1,2,3),array(2,3))", "returns":"true"}, "examples": [ { "expression":"array_all(array(1,2,3),array(2,3))", "returns":"true"},