Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
.classify and .categorize are supposed to return hashes -- make it so.
  • Loading branch information
colomon committed Oct 6, 2012
1 parent 9e5350d commit 7df6137
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/CORE.setting
Expand Up @@ -1699,7 +1699,7 @@ my class List is Cool does Positional {
%result{$k} //= [];
%result{$k}.push: $_;
}
%result.pairs;
%result;
}
method categorize(&test) {
Expand All @@ -1711,7 +1711,7 @@ my class List is Cool does Positional {
%result{$k}.push: $_;
}
}
%result.pairs;
%result;
}
method min($cmp_ = &infix:<cmp>) {
Expand Down

0 comments on commit 7df6137

Please sign in to comment.