Test to determine if two or more items are either the exact same item or of equal values.
0
votes
2answers
47 views
C++ equal method in an abstract class
I'm developing a chess game. So, I created an abstract class called Piece and the real pieces implement this class, So I have concrete classes like Pawn, Rook...
The problem is: I need an equal ...
1
vote
1answer
6 views
NDepend rule to warn if objects of a given type are compared using ==
as the title says: I need a NDepend rule (CQLinq) for C#/.net code, that fires whenever instances of a given type are compared using == (reference comparison). In other words, I want to force the ...
-1
votes
4answers
54 views
why when char data equals object data, Equals() evaluates to false?
Consider the following snippet:
char ch = '[';
string d = "[";
Console.WriteLine(ch.Equals(d))
Output will be false.
What do you do when you want it to be true?
Edit:
variable d is a string in ...
-4
votes
3answers
45 views
Checking equality of vector elements
Say we have the following vectors in matlab:
v1=[2 2 2 2 2 2 2]
v2=[2 2 2 2 3 2 2]
How can we check that all the elements in each vector are equal or not?
EDIT (NOTE)
I'm not asking about ...
0
votes
1answer
25 views
With a has_many relationship, in the returned collection, include? does not recognize equality
In one of my models I have defined equality to also work with strings and symbols. A role is equal to another role (or string or symbol), if its name attribute is the same:
class Role
def == other
...
0
votes
2answers
56 views
Why is this code throwing an InvalidOperationException?
I think that my code should make the ViewBag.test property equal to "No Match", but instead it throws an InvalidOperationException.
Why is this?
string str = "Hello1,Hello,Hello2";
string another = ...
0
votes
1answer
53 views
value of CustomEquality and CustomComparison
I understand the value of asserting
[<StructuralEquality;StructuralComparison>]
This statically forces equality and comparison constraints to be derived structurally, and have a nice side ...
2
votes
3answers
46 views
Storing char array column into string for comparison
I have a char array[4][4] of single characters ie. 'a' and I'm trying to store just the columns of the array into a string for comparison to another string. But the issue I have is it keeps adding the ...
1
vote
3answers
64 views
Objective C: equality == and strict equality ===
As a Javascript programmer it has been drummed into my head to use === instead of == where ever possible.
As I'm learning Objective C, even in the official documentation, I only ever see == being ...
1
vote
1answer
92 views
Call to == does not opt to equals
I have the following class:
abstract class IRDMessage extends Ordered[IRDMessage] {
val messageType: MessageType.Type
val timestamp: DateTime
val content: AnyRef
def compare(that: ...
2
votes
1answer
47 views
Java compare this class to that class for equality
My assignment is to override the method equals(). I have a few concerns using Stack12<E> that = (Stack12<E>)o; and o instanceof Stack12. I am wonder are they bad practice, especially how ...
1
vote
1answer
39 views
Putting equality constraint in z3
I am using z3's python API to solve see if a set of constraint is satisfiable or not.
I have the conditions as string and I want to directly pass them to z3 whenever possible, just to save processing ...
2
votes
5answers
75 views
Using a class versus struct as a dictionary key
Suppose I had the following class and structure definition, and used them each as a key in a dictionary object:
public class MyClass { }
public struct MyStruct { }
public Dictionary<MyClass, ...
1
vote
2answers
89 views
Linq, select differences between two lists, select same between same list, and select duplicates same list
I want to know if it's possible in LINQ to achieve something along the lines of:
newList: { [1], [2] }
oldList: { [2], [3], [4], [5] }
resultantList = { [1], [2, 2], [3], [4], [5] }
Ok that was an ...
2
votes
4answers
84 views
Boolean.TRUE == myBoolean vs. Boolean.TRUE.equals(myBoolean)
Is there ever a situation where using equals(Boolean) and == would return different results when dealing with Boolean objects?
Boolean.TRUE == myBoolean;
Boolean.TRUE.equals(myBoolean);
I'm not ...
-4
votes
2answers
41 views
How to compare two strings, and output the first if they're not equal [closed]
I have the following problem... I need to compare two string and output the first one if they are not equal. Something like the code below, but printing the first string instead. How can I do it?
...
4
votes
5answers
110 views
Can I use ' == ' to compare two vectors. I tried it and seems to be working fine. But I don't know whether it will work in more complex situations
First example:
int main(){
using namespace std;
vector<int> v1,v2;
vector<int>::iterator itr;
v1.push_back(10);
v1.push_back(20);
v1.push_back(30);
...
3
votes
3answers
130 views
Haskell - check whether a 2D list has the same number of rows as columns
I have a 2D list [[Int]] in Haskell and I want to check two things:
whether the list has the sam number of rows as columns
whether the rows have the sam number of elements
For instance:
[[1,2,3], ...
2
votes
1answer
30 views
A better way to compare a variable number of lists to each other for equality
I am in a bit of a conundrum here, I am looking for an easy and dynamic way to check if all lists in a dictionary of lists are the same.
Below is an example of what I am doing now, but obviously my ...
1
vote
1answer
105 views
C++11 static assert for equality comparable type?
How to static_assert a template type is EqualityComparable concept in C++11?
-6
votes
1answer
76 views
Checking if strings are equal in java using == [duplicate]
when i execute the code below, the output is "false"
String string1 = new String("ABC");
String string2= new String("ABC");
System.out.println(string1==string2);
However the output when I ...
3
votes
1answer
40 views
PowerShell multi-dimensional collection logic for -eq
Thanks to PowerShell Logic, I'm familiar with some intricacies of how -eq works when the left operand is a collection - rather than a boolean, -eq will return an array of elements that equal the right ...
0
votes
1answer
36 views
Comparing pointers within a doubly linked list?
I am trying to build a simple text adventure for finals week.
It's pretty standard stuff. Use 'n', 'e', 's', and 'w' to traverse the house, and try to get to the end of the maze.
All was going well ...
3
votes
1answer
74 views
Floating-point equality test and extra precision: can this code fail?
The discussion started under my answer to another question. The following code determines machine epsilon:
float compute_eps() {
float eps = 1.0f;
while (1.0f + eps != 1.0f)
eps /= 2.0f;
...
1
vote
2answers
42 views
PHP: Why won't the program compare values as equal when it prints them with equal values
I have this code for a system:
//get new data from text fields
$i = 0;
$data = array();
while ($i < 7){
$data[$i] = $_POST['t'.$i];
$i++;
}
//get the ID to use in the MySQL database query
...
0
votes
1answer
32 views
How to determin if jquery object from javascript map are still active in page?
I store some jQuery objects in an map {"id1": jQueryObj1, "id2": jQueryObj2, etc}(the id is the identifier of the object parent), and once i have my map populated i work fine with the elements from ...
1
vote
1answer
27 views
JavaScript equal operations anomalies
I'm working on a lecture about hard to understand JavaScript code and of course on of the weak point of JavaScript is knowing what == / === will return.
I found this great answer in stack that covers ...
-1
votes
2answers
36 views
How can I equalize the size of those two matrices in matlab?
I have the following two matrices with the sizes shown:
x ---> 256x256
y ---> 65536x2
How can we equalize the sizes of those two matrices? In other words, how can we make size y equal size ...
-3
votes
1answer
30 views
Equalizing sizes of matrices
Say we have the following two matrices in matlab:
>> x=[1 5;7 8;9 6]
>> y=[6 87]
I'm trying to make them have the same size. I did that by making the size of y to be the same as the ...
2
votes
2answers
51 views
Test if two floats are zero without multiple tests
Is there a clever expression trick to test if a float vec3 is axial (i.e. two zero components) without using multiple equality tests?
At first I thought of if(abs(x)+abs(y)==0.0) (pseudocode)... but ...
0
votes
2answers
36 views
c# getting a configurable equatable method
I've got a simple factory that's built in C# that instantiates and configures validators that are built in ASP.net and JavaScript. I want a way to test if I'm accidently trying to set a validator ...
2
votes
3answers
56 views
Y, N and 0 all equal 0? [duplicate]
$isClient = 0;
if($isClient == 0) echo "is client 0\n";
if($isClient == "n") echo "is client n\n";
if($isClient == "y") echo "is client y\n";
Considering the code above, it outputs the following
is ...
1
vote
2answers
34 views
How does JavaScript do the type conversion for == ?
In the below code, a != b when compared with ==. My initial thought is that JavaScript would use the same conversion for parseFloat as it would with ==. Can anyone explain what actually happens as I'm ...
0
votes
3answers
42 views
How to exclude a specific value in my sql query?
I have the following query which outputs everything correctly except that I don't want one of the rows it's giving me:
SELECT r.Region_Cd, r.Region_Desc,
COUNT(a.Region) AS Count
FROM Region r
...
3
votes
1answer
78 views
Why does it call the “wrong” equal method?
Last week I wanted to answer a question here on stackoverflow.com, but after running some tests in irb I've found an interesting thing.
class X
def ==(other)
p "X#=="
super
end
end
data ...
1
vote
1answer
49 views
Is KeyedCollection meant only when Key determines the equality of the items in it?
I think this is a common problem we run into.
class Person
{
public string place;
public string name;
public Person(string place, string name)
{
this.place = place;
...
2
votes
2answers
48 views
Why don't methods have reference equality?
I had a bug where I was relying on methods being equal to each other when using is. It turns out that's not the case:
>>> class What(object):
def meth(self):
pass
>>> ...
1
vote
1answer
99 views
Odd equality result with a HashSet of an Enum type?
I have two hash sets that I've constructed in different ways that contain all the enum values.
setWithAllEnums.Equals(setToTest); // Returns false
...
20
votes
6answers
819 views
Is it bad practice for operator== to mutate its operands?
Scenario
I have a class which I want to be able to compare for equality. The class is large (it contains a bitmap image) and I will be comparing it multiple times, so for efficiency I'm hashing the ...
3
votes
2answers
57 views
Why is = different from LIKE when using utf8_unicode_ci index?
I have a database table with column name defined as VARCHAR(255) COLLATE utf8_unicode_ci with a unique index. It contains the name "Grosse".
The following statement returns no rows:
SELECT name ...
11
votes
3answers
133 views
Java - strings equals when decompiled
I decompiled some Java code the other day and found this:
String s1 = "something";
String s2 = "something_else";
if (s1 == s2) {
// Path 1
} else {
// Path 2
}
Obviously using '==' to test for ...
0
votes
1answer
36 views
Comparing a static functions equality in javascript?
I am working on a little project and one of the objects for the project can include update functions being added to an array that is a property of the object.
Example,
/*
Add an update function ...
0
votes
1answer
62 views
Can someone explain this bug to me? [closed]
I'm trying to compare two arrays using the smart ~~ match operator. However, it's not working properly. I think I may have I've found a bug in it. See below.
use strict; use warnings;
use ...
3
votes
3answers
101 views
Comparing two Hash of arrays for equality
I want to compare two hash of arrays to see if they are equal. That is, the key values should contain the same elements.
my %h1 = (
w1 => ['3','1','2'],
e2 => ['6','2','4'],
r1 ...
0
votes
3answers
37 views
Comparing a double in an array and returning index number
public int index(double dest){
int index = 0;
for(int i=0; i<coords.length; i++){
if((dest-coords[i])<1 && (dest-coords[i])>-1){
index = i;
...
2
votes
4answers
81 views
When is it OK to use == in JavaScript? [closed]
From: http://www.2ality.com/2011/12/strict-equality-exemptions.html
JavaScript has two operators for determining whether two values are equal:
The strict equality operator === only ...
3
votes
2answers
161 views
LISP: How can I test if two lists have the same elements?
I want to write a function that takes as parameters two lists and checks if every element in the first one is included in the second ( the order of the elements doesn't matter). The function will also ...
1
vote
4answers
81 views
Python If Statement Never Evaluates to True
I apologize if my questions seem trivial. I would rather ask this in a chat room; however, my reputation is too low at the moment, so I am unable to ask anything in the Python chat room. I am ...
2
votes
1answer
57 views
Using “Equals” for valuetypes in C# seems not a good idea, is it?
I red that the default behavior for "Equals" in value types (structs) is using reflection to compare the content of the two values, so it's recommended to override the Equals operator for efficiency ...
2
votes
1answer
98 views
Comparison And Ordering in Go
Is there any internal mechanism in Go for implementing equality and ordering? (So we can use comparison operators on the type - ==, !=, <, >, <=, >=.)
Note: I saw some types have a method ...






