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