See Original text in context
method Baggy(--> Baggy)
Coerce the QuantHash
object to the equivalent object that uses the Baggy role. Note that for Mixy type coercion items with negative values will be skipped.
my is Set = <one two>;say .Baggy; # OUTPUT: «Bag(one two)»my is Mix = one => 1, minus => -1;say .Baggy; # OUTPUT: «Bag(one)»