See Original text in context
method MixHash(--> MixHash) is nodal
Coerces the invocant to MixHash, whereby Positional are treated as lists of values.
See Original text in context
method MixHash(Setty: --> MixHash)
Returns a MixHash containing the elements of the invocant.
my MixHash = Set.new(1, 2, 3).MixHash;say ; # OUTPUT: «MixHash(1 2 3)»