Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
1answer
143 views

Monad's associativity rule in haskell

(m >>= f) >>= g = m >>= (\x -> f x >>= g) what's different from f and \x->f x ?? I think they're the same type a -> m b. but it seems that the second >>= at ...
9
votes
1answer
250 views

Why isn't `“repeat” * 3` the same as `3 * “repeat”` in Ruby?

When I type this: puts 'repeat' * 3 I get: >> repeat repeat repeat But it's not working if I do this: puts 3 * 'repeat' Why?
7
votes
6answers
737 views

Ternary operator associativity in C# - can I rely on it?

Ahh, don't you just love a good ternary abuse? :) Consider the following expression: true ? true : true ? false : false For those of you who are now utterly perplexed, I can tell you that this ...
5
votes
2answers
124 views

Automatically and deterministicly testing a function for associativity, commutativity etc

Is it possible to construct a higher order function isAssociative that takes another function of two arguments and determines whether that function is associative? Similar question but for other ...
5
votes
2answers
182 views

Syntax for partial application of curried functions with reverse-associative infix notation

In other words, is there a good reason why this shouldn't compile? def f(xs: List[Int]) = xs.foldLeft(0) _ // OK def f(xs: List[Int]) = (xs :\ 0) _ // OK def f(xs: List[Int]) = (0 /: xs) _ ...
5
votes
8answers
2k views

C# conditional AND (&&) OR (||) precedence

We get into unnecessary coding arguments at my work all-the-time. Today I asked if conditional AND (&&) or OR (||) had higher precedence. One of my coworkers insisted that they had the same ...
4
votes
2answers
123 views

What does this PHP function return?

public function add($child){ return $this->children[]=$child; } Btw, this is an excerpt from PHP in Action by Dagfinn Reiersol. According to the book, this returns $child, but shouldn't it ...
4
votes
4answers
284 views

How does Perl decide which order to evaluate terms in an expression?

Given the code: my $x = 1; $x = $x * 5 * ($x += 5); I would expect $x to be 180: $x = $x * 5 * ($x += 5); #$x = 1 $x = $x * 5 * 6; #$x = 6 $x = 30 * 6; $x = 180; 180; But instead it is ...
3
votes
2answers
108 views

Is there a quick way to determine precedence and associativity of operators?

I know about perlop. What I am looking for is a quick lookup like the GHCi :info command: ghci> :info (+) class (Eq a, Show a) => Num a where (+) :: a -> a -> a ... -- Defined ...
3
votes
3answers
174 views

How does the different behavior of the unless- and “if !” statement influence the range-operator in scalar context?

On http://sial.org/howto/perl/one-liner/ I found the following two one-liners. The outputs are different because the unless statement is different from if ! ( due to the associativity and precedence ...
3
votes
8answers
1k views

What is associativity of operators and why is it important?

What is associativity (for an operator) and why is it important? Updated: operator associativity
2
votes
4answers
126 views

Could iostream inserters and extractors be class members instead of global overloads?

Having to declare "global friend operator overloading" to do serialization always struck me as kludgey. It didn't seem foundational to have to declare serialization operators outside of your class. ...
2
votes
3answers
131 views

Why do different operators have different associativity?

I've got to the section on operators in The Ruby Programming Language, and it's made me think about operator associativity. This isn't a Ruby question by the way - it applies to all languages. I know ...
2
votes
3answers
126 views

Associativity in Lambda calculus

I am working on the exercise questions of book The Lambda calculus. One of the questions that I am stuck is proving the following: Show that the application is not associative; in fact, x(yz) not ...
2
votes
3answers
1k views

Operator associativity in C specifically prefix and postfix increment and decrement

In C operation associativity is as such for increment, decrement and assignment. 2. postfix ++ and -- 3. prefix ++ and -- 16. Direct assignment = The full list is found here Wikipedia ...
1
vote
1answer
51 views

How to learn the associativity (number of way) of the TLB?

I have a task to learn the number of ways in TLB-cache. Which algorithm should I use?
1
vote
2answers
145 views

Operator associavity problem with pre and post increment :( [closed]

Possible Duplicate: Could anyone explain these undefined behaviors (i = i++ + ++i , i = i++, etc…) #include< stdio.h > int main() { int i = 1; int x = ++i * ++i * ++i; ...
1
vote
2answers
244 views

Recursive expressions with pyparsing

I'm trying to figure out how to do a left-associative expression where recursive (not-enclosed in anything) expressions are possible. For example, I'd like to do: expr + OP + expr that parses 2 ...
0
votes
3answers
57 views

Associativity and Sequence Points in C

Since the associativity of '?' is from right to left,any 2 consecutive '?' operators must be treated as such,Right? Now, int x=-1; int y=x?x++?x:-1:1; I expect this to be executed as: int y = x ? ...
0
votes
3answers
87 views

Associativity and Precedence in C

i) What does if(0) mean? Everytime I use it to test what output i will get, it returns the false part. Is it equivalent to if(0 == 0), incase of which the true part is evaluated. ii) Associativity ...
0
votes
1answer
71 views

What would this snippet display? [closed]

Possible Duplicates: Undefined, unspecified and implementation-defined behavior Could anyone explain these undefined behaviors (i = i++ + ++i , i = i++, etc...) What's the correct result ...
0
votes
4answers
193 views

Operators Precedence in C

printf ("%d \n", 2 > !3 && 4 - 1 != 5 || 6 ) ; Can someone explain to me how this is evaluated ? What I am most confused about is the ! symbol in front of the 3... how to evaluate 2 > ...
0
votes
0answers
48 views

Relation between grammar and operator associativity

Some compiler books / articles / papers talk about design of a grammar and the relation of its operator's associativity. I'm a big fan of top-down, especially recursive descent, parsers and so far ...