65
votes
59answers
4k views
Use of var keyword in C#
After discussion with colleagues regarding the use of the 'var' keyword in C# 3 I wondered what people's opinions were on the appropriate uses of type inference via var?
For examp …
4
votes
4answers
757 views
F# functions with generic parameter types
Hello,
I am trying to figure out how to define a function that works on multiple types of parameters (e.g. int and int64). As I understand it, function overloading is not possible …
0
votes
3answers
139 views
Custom C++ Preprocessor / Typeful Macros
Having seen the advantages of metaprogramming in Ruby and Python, but being bound to lower-level languages like C++ and C for actual work, I'm thinking of manners by which to combi …
0
votes
5answers
177 views
Simple Type Inference in Scala
I have been looking at type inference in Scala and there are a couple of things I'd like to understand a bit better around why expression/method-return types have to be explicitly …
0
votes
4answers
114 views
Why does Haskell interpret my Num type as an Enum?
I'm trying to compile the following function in Haskell to mimic differentiation of a polynomial whose constants are specified in a numerical list:
diff :: (Num a) => [a] -> …
1
vote
2answers
128 views
Why is Haskell throwing a ‘cannot construct infinite type’ error?
I wrote the following code in Haskell to compute the dot product of two vectors, but cannot compile it due to the following error:
cannot construct infinite type: a = [a] When gen …
2
votes
4answers
165 views
What is a type inferencer?
Does it only exist in statically typed languages? And is it only there when the language is not strongly typed (i.e. does Java have one)? Also, where does it belong - in the compil …
3
votes
2answers
85 views
JSTL foreach and intellisense
With a code like this:
<c:forEach items="${customers}" var="customer">
${customer.name}
</c:forEach>
IntelliJ Idea is able to infer that the type of the "custome …
3
votes
2answers
112 views
Why does C# “var” keyword not work when looping through a Visio Masters collection?
I am using the Visio API to loop through each Microsoft.Office.Interop.Visio.Master object in a Microsoft.Office.Interop.Document's Masters collection.
When I use var as follows, …
1
vote
4answers
211 views
Generic types with type parameter in C#
Hello everyone.
I don't think that this could be done in C#, but posting this just to make sure. Here's my problem. I would like to do something like this in C#:
var x = 10;
var …
8
votes
2answers
165 views
Haskell: type inference and function composition
This question was inspired by this answer to another question, indicating that you can remove every occurrence of an element from a list using a function defined as:
removeall = f …
4
votes
2answers
134 views
What are the limits of type inference?
What are the limits of type inference? Which type systems have no general inference algorithm?
7
votes
3answers
385 views
Are Infinite Types (aka Recursive Types) not possible in F#?
I was chatting with Sadek Drobi on twitter when be brought up that F# didn't seem to support Infinite Types. It turns out that in C# you can do something along these lines:
deleg …
4
votes
2answers
163 views
Why can’t Scala infer the type parameter in this example?
Suppose I have two classes, Input and Output, which are designed to be connected to each other. Output produces values of some type, and Input consumes them.
class Input[T] {
va …
0
votes
3answers
160 views
Simplest example of need for “unification” in type inference
I'm trying to get my head around how type inference is implemented.
In particularly, I don't quite see where/why the heavy lifting of "unification" comes into play.
I'll give an e …
