Test to determine if two or more items are either the exact same item or of equal values.

learn more… | top users | synonyms

0
votes
2answers
41 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
47 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
42 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
59 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
89 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
46 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
37 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
74 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
81 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
38 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
108 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
129 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
22 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
101 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
39 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
34 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
66 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
41 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
25 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
34 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
29 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
55 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
41 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
47 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
47 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
97 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
811 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
55 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
132 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
33 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
95 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
35 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
156 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
79 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
52 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 ...
-1
votes
3answers
38 views

Substring equality

This is a question that deals with SUBSTRING equality with Server 2008. In my problem I have a column called LICNO that deals with license numbers. These license numbers are formatted as the ...
0
votes
2answers
105 views

C how to compare 2 elements of unknown type

vector_dinamic *creeaza_vector() { vector_dinamic *v=malloc(sizeof(vector_dinamic)*capacitate_initiala); v->Element=malloc(sizeof(Elements)*capacitate_initiala); v->lungimea=0; ...
0
votes
1answer
70 views

Java EqualsBuilder with variable parameters

I have a task that requires me to filter out objects from a list depending on the number of parameters that a user specifies. If the class has 3 fields A, B and C and the user only fills in A then I ...
0
votes
2answers
56 views

creating a method to search array indices for duplicate values

I'm trying to write a method that will search the indices of an array called "items" to see if the same string is contained at more than one index (ignoring case). If a string is in the array more ...
2
votes
3answers
78 views

Using an equality check between columns in a SELECT clause

I am using Microsoft SQL Server 2012 and I would like to run this seemingly simple query: SELECT FirstEvent.id AS firstEventID, SecondEvent.id AS secondEventID, DATEDIFF(second, ...

1 2 3 4 5 12