On Sun Jan 11 04:36:44 2009, ihrd wrote:
> Hi,
> ah, and this bug broke my code :
> I was using Str ~~ Array, Regex ~~ Array and it works properly before.
> 
> > ":)".say if 'a' ~~ <a b c>

Now gives no output, which is the correct thing. If you were expecting
different, your code is wrong. :-) Maybe you meant:

":)".say if <a b c> ~~ 'a',*

Or something.

> Non-dwimmy hyperoperator cannot be used on arrays of different sizes
> or dimensions.
> > ":)".say if /b/ ~~ <a b c>
> Non-dwimmy hyperoperator cannot be used on arrays of different sizes
> or dimensions.
> 
And this prints nothing too - note array grep would have the /b/ on the
other side. And that works. :-)

So, think this ticket can be resolved.

Thanks!

Jonathan

Reply via email to