On Thu, 29 Jun 2017 12:50:43 -0700, sml...@gmail.com wrote:
> It looks like this bug hasn't been *completely* fixed:
> 
> dd &infix:<+>( "2" );       # 2
> dd &infix:<*>( "2" );       # 2
> 
> dd [*] "2";                 # 2
> dd [+] "2";                 # 2
> 
> dd reduce &infix:<*>, "2";  # 2
> dd reduce &infix:<+>, "2";  # "2"
> 
> i.e. it doesn't work when using the + operator with the functional
> form of reduce, even though it works with other numeric operators and
> with the meta-operator form.

Last example fixed with commit (2018-01-13) 
https://github.com/rakudo/rakudo/commit/0af3f4d1c37dddb8c6362c2eafb74d849c5d9ded

Reply via email to