Documentation for method MixHash
assembled from the following pages:
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.
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(1 2 3)»