[perl #71846] currying of prefix: operator with !whatever_closure

2010-07-20 Thread jn...@jnthn.net via RT
On Mon Jan 04 16:40:58 2010, dave.wh...@gmail.com wrote: > By principle of least surprise, all three of these should result in > the same output: > > rakudo: say (0,1).grep: {!($^x%2)} > rakudo db84bc: 0 > > rakudo: say (0,1).grep: !(*%2) > rakudo db84bc: #{empty-list} > > rakudo: say (0,1)

[perl #71846] currying of prefix: operator with !whatever_closure

2010-01-05 Thread Dave Whipp
# New Ticket Created by "Dave Whipp" # Please include the string: [perl #71846] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=71846 > By principle of least surprise, all three of these should result in the same output: r