method any
| 1 | class Any | 
| 1.1 | (Any) method any | 
Documentation for method any assembled from the following types:
class Any
From Any
(Any) method any
Defined as:
method any(--> Junction)
Interprets the invocant as a list and creates an any-Junction from it.
say so 2 == <1 2 3>.any; # OUTPUT: «True»say so 5 == <1 2 3>.any; # OUTPUT: «False»