Combined from primary sources listed below.
See primary docmentation in context for method minpairs.
multi method minpairs(Any:D:)
Calls .pairs and returns a Seq with all of the Pairs with minimum values, as judged by the cmp operator:
<a b c a b c>.minpairs.raku.put; # OUTPUT: «(0 => "a", 3 => "a").Seq»
%(:42a, :75b).minpairs.raku.put; # OUTPUT: «(:a(42),).Seq»
See primary docmentation in context for method minpairs.
multi method minpairs(Setty:D: --> Seq:D)
Returns the value of self.pairs (as all Pairs have minimum values). See also Any.minpairs