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)
Like (<) with reversed arguments. Returns True
if $a
is a strict superset of $b
.
say (1, 2, 3, 4).Set (>) (3, 2, 1).Set; # OUTPUT: «True»say (1, 3).Set (>) (3, 2, 1).Set; # OUTPUT: «False»say ∅ (>) (3, 2, 1).Set; # OUTPUT: «False»