Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
1answer
453 views

JavaScript equality transitivity is weird

I've been reading Douglas Crawford's JavaScript: The Good Parts and I came across this weird example that doesn't make sense to me: '' == '0' // false 0 == '' // true 0 == '0' ...
7
votes
4answers
180 views

Is the JavaScript operator === provably transitive?

JavaScript's quirky weakly-typed == operator can easily be shown to be non-transitive as follows: var a = "16"; var b = 16; var c = "0x10"; alert(a == b && b == c && a != c); // ...
1
vote
1answer
205 views

Transitive dependencies in maven plugins

Are dependencies in Maven plugins supposed to resolve their transitive dependencies or do they have to be manually added to the plugin dependencies?
1
vote
4answers
2k views

Are Active Directory forest trusts transitive?

I'm working on trouble shooting an application under development that uses information from Active Directory in a multi-forest environment and I have the current problem down to figuring out if forest ...
0
votes
5answers
94 views

Is Inequality Transitive in Java?

If I have 3 objects a, b, and c, and I want to check that none of them are equal to each other, I need to check: if (!a.equals(b) && !b.equals(c) && !a.equals(c)) { // to simplify, ...
0
votes
2answers
482 views

transitive rails associations and magical count

In Rails, to automatically count associations, you do: class Script has_many :chapters end class Chapter belongs_to :script end and you add a chapters_count column into the Script model. Now, ...