Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Added docs for Setty.BagHash
  • Loading branch information
Jan-Olof Hendig committed Aug 4, 2016
1 parent 82a3be5 commit f50b20a
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions doc/Type/Setty.pod6
Expand Up @@ -122,6 +122,17 @@ Returns a L<Bag|/type/Bag> containing the elements of the invocant.
my Bag $b = Set.new(1, 2, 3).Bag;
say $b; # bag(3, 1, 2)
=head2 method BagHash
Defined as:
method BagHash(Setty:D:) returns BagHash:D
Returns a L<BagHash|/type/BagHash> containing the elements of the invocant.
my BagHash $b = Set.new(1, 2, 3).BagHash;
say $b; # BagHash.new(3, 1, 2)
=head2 method Bool
Defined as:
Expand Down

0 comments on commit f50b20a

Please sign in to comment.