[perl #75368] [BUG] infix: shouldn't differ from infix: when applied to junctions in Rakudo

2010-05-28 Thread jn...@jnthn.net via RT
On Wed May 26 05:53:47 2010, masak wrote: > rakudo: say 1 ne 1|2 > rakudo 240400: OUTPUT«any(Bool::False, Bool::True)␤» > rakudo: say 1 !eq 1|2 > rakudo 240400: OUTPUT«0␤» Now it's all nicely consistent... > say 1 !eq 1|2 0 > say 1 ne 1|2 0 > say 1 !== 1|2 0 > say 1 != 1|2 0 Given to moritz+

[perl #75368] [BUG] infix: shouldn't differ from infix: when applied to junctions in Rakudo

2010-05-27 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #75368] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=75368 > actually, $i !~~ any(|$nth) should be the same as !($i ~~ any(|$nth))iiuc the