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