method MixHash

Documentation for method MixHash assembled from the following types:

class Any

From Any

(Any) method MixHash

Defined as:

method MixHash(--> MixHash:Dis 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:D: --> MixHash:D)

Returns a MixHash containing the elements of the invocant.

my MixHash $b = Set.new(123).MixHash;
say $b;                                           # OUTPUT: «MixHash.new(3, 1, 2)␤»