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