all_of
    The following is a list of properties for the function all_of:
| Property | Value | 
|---|---|
additionalArgCheck | true | 
brief | All values pass a test | 
category | higher_order_list | 
description | Returns true if all values in a list pass the predicate test. | 
functionId | all_of | 
functionLabel | all_of | 
pure | true | 
parameters | [ { "dataType": "function", "dataTypeParameter": "(... values: any): boolean", "description": "This function is called for each value in the first list in values or until false is returned. If no calls return false, the result is true.", "name": "predicate" }, { "minArgs": 1, "description": "These are the parameters passed to predicate with the exception that the first list is passed one value at a time. At least one list is required.", "name": "values" } ] | 
returns | { "dataType": "boolean" } |