Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Make .end a multi
  • Loading branch information
lizmat committed Dec 20, 2014
1 parent deb1e6d commit b5699e3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/core/Any.pm
Expand Up @@ -55,7 +55,8 @@ my class Any { # declared in BOOTSTRAP
# derived from .list
method Parcel() { self.list.Parcel }
method elems() { self.list.elems }
method end() { self.list.end }
proto method end(|) { * }
multi method end() { self.list.end }
method squish(|c) { self.list.squish(|c) }
method rotor(|c) { self.list.rotor(|c) }
method reverse() { self.list.reverse }
Expand Down

0 comments on commit b5699e3

Please sign in to comment.