all_of_any
The following is a list of properties for the function all_of_any
:
Property | Value |
---|---|
additionalArgCheck | true |
brief | Combinations of all in list1 and any in list2 true |
category | higher_order_list |
description | This function returns true if the result of calling predicate with all of the combination of values from list1 and any of the values of list2 returns true. |
functionId | all_of_any |
functionLabel | all_of_any |
pure | true |
parameters | [ { "dataType": "function", "dataTypeParameter": "(value1: any, value2: any): boolean", "description": "The predicate is passed two parameters, the first is a value from list1 and the second is a value from list2.", "name": "predicate" }, { "dataType": "list", "name": "list1" }, { "dataType": "list", "name": "list2" } ] |
returns | { "dataType": "boolean" } |