The type-equivalence tag has no wiki summary.
0
votes
0answers
74 views
name and structural equivalence beginner [closed]
I was going through the topic of name equivalence and structural equivalence and had some confusion. I was wondering if anyone can write a simple program ( c preferably ) or even a small piece of code ...
2
votes
1answer
71 views
Primitives and Object Wrapper Equivalence in JavaScript
EDIT: Based on everyone's feedback, the original version of this question is more design-related, not standards-related. Making more SO-friendly.
Original:
Should a JS primitive be considered ...
6
votes
1answer
202 views
How exactly does the Scala implementation of <:<, <%<, =:= work in the compiler?
I see now that there's a related question asking what these operators (<:<, <%<, =:=) do here:
What do <:<, <%<, and =:= mean in Scala 2.8, and where are they documented?
But ...
0
votes
0answers
130 views
How are Scala <:< and =:= operators used, and how does their Predef implementation work? [duplicate]
Possible Duplicate:
What do <:<, <%<, and =:= mean in Scala 2.8, and where are they documented?
Evidently <:< and =:= are used to assert that two types have a subclass ...
0
votes
1answer
295 views
Variable holding a sql money data type doesn't update (C#)
I have a column type money in my sql server database, which is moneyAcumulated. Then with a command object I execute a store procedure that -among others things- brings the value for the column ...
-1
votes
1answer
61 views
Equivalence of String and string in C# test [duplicate]
Possible Duplicate:
String vs string in C#
I have a test in C# code I'm reading:
if (variable is string)
I am wondering if this is strictly equivalent to:
if (variable is String)
or ...
1
vote
1answer
229 views
Can't get Type Equivalence to work for the Google Earth Plugin
I have a WinForms C# application that embeds the Google Earth(GE) Plugin. This is done via COM Interop, by adding a reference to the Google Earth Plugin.
What we'd like to be able to do is support ...
3
votes
2answers
2k views
Name equivalence question
Suppose I have:
int a;
int b;
Are the variables a and b name equivalent (more specifically, since primitive types don't have type names, can they be considered name equivalent)?
Thanks.
1
vote
2answers
1k views
structural equivalence vs name equivalence
I can't seem to grasp exactly what name equivalence is. I'm pretty sure I have structural down though. An example my professor gave was this:
Type TI=integer
Type TTI=TI
a=integer
b=TTI
f= ref ...
4
votes
3answers
667 views
Check if an object is a generic collection
We are dynamically building some SQL statements and we are utilizing the IN operator. If our value is a collection of values such that:
List<Guid> guids = new List<Guid>()
I want to be ...
2
votes
2answers
833 views
What are the arguments both for and against both name equivalence and structural equivalence?
In language design circles there used to be a long-running debate over whether languages should use structural equivalence or name equivalence. Languages like ALGOL or ML or Modula-3 used structural ...
3
votes
5answers
519 views
Should I Overload == Operator?
How does the == operator really function in C#? If it used to compare objects of class A, will it try to match all of A's properties, or will it look for pointers to the same memory location (or maybe ...
5
votes
3answers
16k views
C#: Oracle Data Type Equivalence with OracleDbType
Situation:
I am creating an app in C# that uses Oracle.DataAccess.Client (11g) to do certain operations on a Oracle database with stored procedures. I am aware that there is a certain enum ...
4
votes
5answers
526 views
Why did the language designers of C do type equivalance like this?
I'm learning C and I'm reading about type equivalence.
I'm curious, does anyone have an opinion why they used structural equivalence for arrays and pointers but they used declaration equivalence for ...
2
votes
3answers
925 views
Impact of int array's size on type equivalence
I'm reading about Type Equivalence in my Programming Languages class and I've come across a situation in C I'm unsure about.
It describes C's "Type Equivalence" as:
C uses a form of type ...