Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Added docs for Baggy.SetHash
  • Loading branch information
Jan-Olof Hendig committed Jun 18, 2016
1 parent 4aee715 commit 3e2bdbd
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions doc/Type/Baggy.pod
Expand Up @@ -259,6 +259,19 @@ Returns a L<Set|/type/Set> whose elements are the L<keys|#method keys> of the in
my $breakfast = (eggs => 2, bacon => 3).BagHash;
say $breakfast.Set; # set(bacon, eggs)
=head2 method SetHash
Defined as:
method SetHash() returns SetHash:D
Returns a L<SetHash|/type/SetHash> whose elements are the L<keys|#method keys> of the invocant.
my $breakfast = (eggs => 2, bacon => 3).BagHash;
my $sh = $breakfast.SetHash;
say $sh.WHAT; # (SetHash)
say $sh.elems; # 2
=head2 method ACCEPTS
=comment TODO
Expand Down

0 comments on commit 3e2bdbd

Please sign in to comment.