method MixHash
Documentation for method MixHash
assembled from the following types:
role Setty
From Setty
(Setty) method MixHash
Defined as:
method MixHash(Setty: --> MixHash)
Returns a MixHash containing the elements of the invocant.
my MixHash = Set.new(1, 2, 3).MixHash;say ; # OUTPUT: «MixHash.new(3, 1, 2)»
class Any
From Any
(Any) method MixHash
Defined as:
method MixHash(--> MixHash) is nodal
Coerces the invocant to MixHash, whereby Positionals are treated as lists of values.