See Original text in context
method BagHash (--> BagHash)
Coerces the MixHash
to a BagHash
. The weights are converted to Int
, which means the number of keys in the resulting BagHash
can be fewer than in the original MixHash
, if any of the weights are negative or truncate to zero.
See Original text in context
method BagHash(--> BagHash) is nodal
Coerces the invocant to BagHash, whereby Positional are treated as lists of values.
See Original text in context
method BagHash(Setty: --> BagHash)
Returns a BagHash containing the elements of the invocant.
my BagHash = Set.new(1, 2, 3).BagHash;say ; # OUTPUT: «BagHash(1 2 3)»
See Original text in context
method BagHash (--> BagHash)
Coerces the Mix
to a BagHash
. The weights are convert to Int
, which means the number of keys in the resulting BagHash
can be fewer than in the original Mix
, if any of the weights are negative or truncate to zero.