Returns the first true value obtained by iterating over one or more collections.
Applies function to groups of corresponding elements of collection and more-collections. If an application of function returns true, then any? returns that true value. Otherwise function returns #f when applied to every such group, and any? returns #f.
If all the collections are sequences, any? operates in natural order. In all cases, any? stops on the first true value returned by function.
any? (\>, #(1, 2, 3 ,4), #(5, 4, 3, 2))
⇒ #t
any? (even?, #(1, 3, 5, 7))
⇒ #f
sealed
| function | An instance of <function>. |
| collection | An instance of <collection>. |
| #rest more-collections | Instances of <object>. |
| value | An instance of <object>. |