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 4aee715 commit 3e2bdbdCopy full SHA for 3e2bdbd
doc/Type/Baggy.pod
@@ -259,6 +259,19 @@ Returns a L<Set|/type/Set> whose elements are the L<keys|#method keys> of the in
259
my $breakfast = (eggs => 2, bacon => 3).BagHash;
260
say $breakfast.Set; # set(bacon, eggs)
261
262
+=head2 method SetHash
263
+
264
+Defined as:
265
266
+ method SetHash() returns SetHash:D
267
268
+Returns a L<SetHash|/type/SetHash> whose elements are the L<keys|#method keys> of the invocant.
269
270
+ my $breakfast = (eggs => 2, bacon => 3).BagHash;
271
+ my $sh = $breakfast.SetHash;
272
+ say $sh.WHAT; # (SetHash)
273
+ say $sh.elems; # 2
274
275
=head2 method ACCEPTS
276
277
=comment TODO
0 commit comments