Tagged Questions
11
votes
1answer
249 views
Fixity of backtick operators?
What is the fixity of backtick operators?
For instance in this code from Real World Haskell:
ghci> (1+) `fmap` [1,2,3] ++ [4,5,6]
[2,3,4,4,5,6]
It's evident the backtick operator `fmap` has a ...
9
votes
8answers
561 views
What is the right precedence of the math expression
What is the correct sequence of the math operations in this expression in Java:
a + b * c / ( d - e )
1. 4 1 3 2
2. 4 2 3 1
I understand that result is the same in both ...
2
votes
1answer
154 views
Lambda Calculus operators precedence
I have problems understanding lambda calculus operators precedence.
For example the following code:
lambda x.x z lambda y.x y
is going to be:
lambda x. (x (z lambda y. x y))
or
lambda x. ...
2
votes
3answers
113 views
What is the order precedence of a = b == c in JavaScript?
var clicked = $(event.currentTarget || target);
var clickedIsActive = clicked[0] == this.active[0];
I'm fairly new to js, and while attempting to read through some jQuery code, I came across the ...