method MixHash
| 1 | class Any |
| 1.1 | (Any) method MixHash |
| 2 | role Setty |
| 2.1 | (Setty) method MixHash |
Documentation for method MixHash assembled from the following types:
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.new(3, 1, 2)»