Returns a value of True if the named function, func, returns a value of False for every argument supplied in the list .
notAny? ( Func As Name, _
list As List ) As Boolean
Argument | Type | Description |
---|---|---|
func | Name | The name of the function to apply. The function must return a boolean . |
list | List | List of arguments to which the func will be applied. |
Intent >notAny?(:empty?, {{"a"},{},{}})
--> False
Intent >notAny?(:empty?, {{"a"},{"a"},{}})
--> False
Intent >notAny?(:empty?, {{"a"},{"a"},{"a"}})
--> True