1
vote
5answers
118 views
Equality Test for Derived Classes in C++ [closed]
Possible Duplicate:
What’s the right way to overload operator== for a class hierarchy?
In C++, how can derived classes override the base class equality test in a mea …
1
vote
6answers
235 views
Pointer equality in Haskell?
Is there any notion of pointer quality in Haskell? == requires things to be deriving Eq, and I have something which contains a (Value -> IO Value), and neither -> nor IO derive Eq. …
0
votes
8answers
69 views
Assert that two java beans are equivalent
This question is close, but still not what I want. I'd like to assert in a generic way that two bean objects are equivalent. In case they are not, I'd like a detailed error message …
2
votes
1answer
45 views
How can you easily test hash equality in Ruby when you only care about intersecting keys?
Say I have the following hashes:
hash_x = {
:a => 1,
:b => 2
}
hash_y = {
:b => 2,
:c => 3
}
I need a chunk of logic that compares the two for equality only …
-2
votes
2answers
251 views
How could this simple pointer equality test fail?
void FileManager::CloseFile(File * const file)
{
for (int i = 0; i < MAX_OPEN_FILES; ++i)
{
if ((_openFiles[i] == file) == true)
{
_openFiles[i] == NULL;
}
}
...
_ …
0
votes
3answers
72 views
What is the algorithm used by the memberwise equality test in .NET structs?
What is the algorithm used by the memberwise equality test in .NET structs? I would like to know this so that I can use it as the basis for my own algorithm.
I am trying to write …
1
vote
7answers
176 views
When are two enums equal in C#?
I have created two enums and I know they are not the same but still I think it makes sense they would be equal since their string representation as well as their numeral representa …
11
votes
2answers
482 views
Implementing -hash / -isEqual: / -isEqualTo…: for Objective-C collections
Note: The following SO questions are related, but neither they nor the linked resources seem to fully answer my questions, particularly in relation to implementing equality tests f …
11
votes
9answers
1k views
Best practices for overriding isEqual: and hash
How do you properly override isEqual: in Objective-C? The "catch" seems to be that if two objects are equal (as determined by the isEqual: method), they must have the same hash va …
0
votes
1answer
27 views
wpf mvvm equality
I would like to use an MVVM in a WPF project I'm working on, including the use of RelayCommands (aka DelegateCommands). I'm running into an interesting but frustration problem in i …
0
votes
2answers
111 views
.NET delegate equality?
I think this is the question, anyway. I am using a RelayCommand, which decorates an ICommand with two delegates. One is Predicate for the _canExecute and the other is Action for th …
9
votes
8answers
3k views
LINQ Select Distinct with Anonymous Types
So I have a collection of objects. The exact type isn't important. From it I want to extract all the unique pairs of a pair of particular properties, thusly:
myObjectCollection. …
0
votes
8answers
157 views
What’s the difference between == and === in PHP? [closed]
Possible Duplicates:
Difference between === and == in php
How do the equality (==) and identity (===) comparison operators differ?
What is the difference, pros/cons for …
-1
votes
1answer
99 views
Difference between === and == in php [closed]
Possible Duplicate:
How do the equality (==) and identity (===) comparison operators differ?
hi, Could anyone Please explain what is the difference between == and === in P …
13
votes
5answers
967 views
How do the equality (==) and identity (===) comparison operators differ?
Can you explain the difference between == and ===, giving some useful examples?
