We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b0339f3 commit 336a3c0Copy full SHA for 336a3c0
doc/Type/Setty.pod6
@@ -165,6 +165,17 @@ Returns C<True> if the invocant contains at least one element.
165
my $s2 = $s1 ∩ Set.new(4, 5); # set intersection operator
166
say $s2.Bool; # False
167
168
+=head2 method Mix
169
+
170
+Defined as:
171
172
+ method Mix(Setty:D:) returns Mix:D
173
174
+Returns a L<Mix|/type/Mix> containing the elements of the invocant.
175
176
+ my Mix $b = Set.new(1, 2, 3).Mix;
177
+ say $b; # mix(3, 1, 2)
178
179
=head1 See Also
180
181
L<Sets, Bags, and Mixes|/language/setbagmix>
0 commit comments