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