Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Missing is raw in Seq.AT-POS.
  • Loading branch information
jnthn committed Dec 13, 2015
1 parent def7024 commit e160c98
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/Seq.pm
Expand Up @@ -119,11 +119,11 @@ my class Seq is Cool does Iterable does PositionalBindFailover {
Nil
}

multi method AT-POS(Seq:D: Int $idx) {
multi method AT-POS(Seq:D: Int $idx) is raw {
self.cache.AT-POS($idx)
}

multi method AT-POS(Seq:D: int $idx) {
multi method AT-POS(Seq:D: int $idx) is raw {
self.cache.AT-POS($idx)
}

Expand Down

0 comments on commit e160c98

Please sign in to comment.