notAny?()

Synopsis

Returns a value of True if the named function, func, returns a value of False for every argument supplied in the list .

Syntax

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.

Example 1

Intent >notAny?(:empty?, {{"a"},{},{}}) 
--> False 

Example 2

Intent >notAny?(:empty?, {{"a"},{"a"},{}}) 
--> False 

Example 3

Intent >notAny?(:empty?, {{"a"},{"a"},{"a"}}) 
--> True