Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix whitespace
  • Loading branch information
moritz committed Jan 1, 2015
1 parent fcd34be commit 49fab66
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/core/Range.pm
Expand Up @@ -201,20 +201,20 @@ my class Range is Iterable is Cool does Positional {
method excludes_max() { DEPRECATED('excludes-max', |<2014.12 2015.12>); $!excludes-max }
}

sub infix:<..>($min, $max) {
Range.new($min, $max)
sub infix:<..>($min, $max) {
Range.new($min, $max)
}
sub infix:<^..>($min, $max) {
Range.new($min, $max, :excludes-min)
sub infix:<^..>($min, $max) {
Range.new($min, $max, :excludes-min)
}
sub infix:<..^>($min, $max) {
Range.new($min, $max, :excludes-max)
sub infix:<..^>($min, $max) {
Range.new($min, $max, :excludes-max)
}
sub infix:<^..^>($min, $max) is pure {
Range.new($min, $max, :excludes-min, :excludes-max)
Range.new($min, $max, :excludes-min, :excludes-max)
}
sub prefix:<^>($max) {
Range.new(0, $max.Numeric, :excludes-max)
Range.new(0, $max.Numeric, :excludes-max)
}

# vim: ft=perl6 expandtab sw=4

0 comments on commit 49fab66

Please sign in to comment.