infix (>=)
Documentation for infix (>=)
assembled from the following types:
language documentation Sets, bags, and mixes
(Sets, bags, and mixes) infix (>=)
multi sub infix:<<(>=)>>(Any , Any --> Bool)multi sub infix:<<(>=)>>(Setty , Setty --> Bool)
Superset of or equal to operator.
Like (<=) with reversed arguments. Returns True
if $a
is a superset of or equal to $b
.
say (1, 2, 3).Set (>=) (3, 2, 1).Set; # OUTPUT: «True»say (1, 3).Set (>=) (3, 2, 1).Set; # OUTPUT: «False»say ∅ (>=) (3, 2, 1).Set; # OUTPUT: «False»