Re: [julia-users] Re: Why X.>0 & X.<1 equal to X .> (0 & X) .< 1 rather than (X.>0) & (X.<1)?

2015-04-02 Thread Stefan Karpinski
That conversation got pretty heavily derailed. I think the main takeaway is that dotted comparison operators should not be at the same precedence level as undotted comparison operators and the dotted ones should maybe have higher precedence than bitwise operators. On Thu, Apr 2, 2015 at 10:16 AM,

[julia-users] Re: Why X.>0 & X.<1 equal to X .> (0 & X) .< 1 rather than (X.>0) & (X.<1)?

2015-04-02 Thread Matt Bauman
I agree! That was one of the first issues I filed. https://github.com/JuliaLang/julia/issues/5187 It's still on the slate to be addressed in 0.4. On Thursday, April 2, 2015 at 8:58:15 AM UTC-4, Jerry Xiong wrote: > > I notice that the logical operations in Julia have a different precedence > o