Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Any.[all|any|n?one]
  • Loading branch information
jnthn committed Aug 3, 2011
1 parent 275e3db commit d097bdc
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/core/Any.pm
Expand Up @@ -87,6 +87,11 @@ my class Any {
return self;
}
}

method all() { all(self.list) }
method any() { any(self.list) }
method one() { one(self.list) }
method none() { none(self.list) }

########
# Hash-like methods for Any.
Expand Down

0 comments on commit d097bdc

Please sign in to comment.