Skip to content

Commit

Permalink
Merge branch 'master' of git://github.com/perl6/std
Browse files Browse the repository at this point in the history
  • Loading branch information
FROGGS committed Feb 4, 2013
2 parents 3725e26 + 7deb9d7 commit da06458
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions CORE.setting
Original file line number Diff line number Diff line change
Expand Up @@ -643,15 +643,15 @@ my proto sub infix:<∋>($, $ --> Bool) is equiv(&infix:<==>) is export {*}
my proto sub infix:<(cont)>($a, $b --> Bool) {*}
my proto sub infix:<∌>($a, $b --> Bool) is equiv(&infix:<==>) is export {*}

my proto sub infix:<∪>(Any $a, Any $b --> Set) is equiv(&infix:<X>) is export {*}
my proto sub infix:<(|)>($a, $b --> Set) is equiv(&infix:<X>) is export {*}
my proto sub infix:<∪>(Any $a, Any $b --> Set) is equiv(&infix:<|>) is export {*}
my proto sub infix:<(|)>($a, $b --> Set) is equiv(&infix:<|>) is export {*}

my proto sub infix:<∩>(Any $a, Any $b --> Set) is equiv(&infix:<X>) is export {*}
my proto sub infix:<(&)>($a, $b --> Set) is equiv(&infix:<X>) is export {*}
my proto sub infix:<∩>(Any $a, Any $b --> Set) is equiv(&infix:<&>) is export {*}
my proto sub infix:<(&)>($a, $b --> Set) is equiv(&infix:<&>) is export {*}

my proto sub infix:<(-)>(Any $a, Any $b --> Set) is equiv(&infix:<X>) is export {*}
my proto sub infix:<(-)>(Any $a, Any $b --> Set) is equiv(&infix:<^>) is export {*}

my proto sub infix:<(^)>(Any $a, Any $b --> Set) is equiv(&infix:<X>) is export {*}
my proto sub infix:<(^)>(Any $a, Any $b --> Set) is equiv(&infix:<^>) is export {*}

my proto sub infix:<⊆>($, $ --> Bool) is equiv(&infix:<==>) is export {*}
my proto sub infix:['(<=)']($a, $b --> Bool) is equiv(&infix:<==>) is export {*}
Expand Down

0 comments on commit da06458

Please sign in to comment.