Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
my-ify KeySet and KeyBag
  • Loading branch information
Tadeusz Sośnierz committed Mar 1, 2012
1 parent 8f765aa commit 01386ea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/core/Bag.pm
Expand Up @@ -50,7 +50,7 @@ sub bag(*@a) returns Bag {
Bag.new(|@a);
}

class KeyBag does Associative does Baggy {
my class KeyBag does Associative does Baggy {
has %!elems; # should be UInt

method keys { %!elems.keys }
Expand Down
2 changes: 1 addition & 1 deletion src/core/Set.pm
Expand Up @@ -60,7 +60,7 @@ sub set(*@args) {
Set.new(@args);
}

class KeySet is Iterable does Associative {
my class KeySet is Iterable does Associative {
has %!elems;

method keys { %!elems.keys }
Expand Down

0 comments on commit 01386ea

Please sign in to comment.