Tagged Questions
Type inference is the process of inferring types for programs automatically, using rules defined by a type system.
261
votes
92answers
30k views
Use of var keyword in C# [closed]
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 example I rather lazily ...
85
votes
7answers
27k views
C#: at design time, how can I reliably determine the type of a variable that is declared using var?
I'm working on a completion (intellisense) facility for C# in emacs.
The idea is, if a user types a fragment, then asks for completion via a particular keystroke combination, the completion facility ...
55
votes
1answer
662 views
Problem understanding C# type inference as described in the language specification
The C# language specification describes type inference in Section §7.5.2. There is a detail in it that I don’t understand. Consider the following case:
// declaration
void Method<T>(T obj, ...
46
votes
10answers
1k views
How much is too much with C++0x auto keyword
I've been using the new auto keyword available in the C++0x standard for complicated templated types which is what I believe it was designed for. But I'm also using it for things like:
auto foo = ...
41
votes
4answers
842 views
Named arguments and generic type inference in C# 4.0
I had been programming under the assumption that, when calling a method in C# 4.0, supplying names for your arguments would not affect the outcome unless in doing so you were "skipping" one or more ...
39
votes
5answers
1k views
Why is F#'s type inference so fickle?
The F# compiler appears to perform type inference in a (fairly) strict top-to-bottom, left-to-right fashion. This means you must do things like put all definitions before their use, order of file ...
39
votes
4answers
17k views
Java: Collections.emptyList() returns a List<Object>?
I'm having some trouble navigating Java's rule for inferring generic type parameters. Consider the following class, which has an optional list parameter:
import java.util.Collections;
import ...
32
votes
4answers
6k views
Why does this Haskell code produce the “infinite type” error?
I am new to Haskell and facing a "cannot construct infinite type" error that I cannot make sense of.
In fact, beyond that, I have not been able to find a good explanation of what this error even ...
32
votes
6answers
2k views
implementing type inference
well I see some interesting discussions here about static vs. dynamic typing
I generally prefer static typing, due to compile type checking, better documented code,etc. However I do agree that they do ...
25
votes
4answers
918 views
Why can't the C# constructor infer type?
EDIT: updated the question after PostMan pointed out the error on my part
Just out of curiosity, does anybody know why type inference is not supported for constructor the way they are for generic ...
20
votes
2answers
502 views
Why do 3 and x (which was assigned 3) have different inferred types in Haskell?
Type inference in Haskell has a bit of a learning curve (to say the least!). A good way to start learning it is with simple examples. So, the following is a bit of a "hello world" for type inference.
...
19
votes
5answers
607 views
Generic methods in .NET cannot have their return types inferred. Why?
Given:
static TDest Gimme<TSource,TDest>(TSource source)
{
return default(TDest);
}
Why can't I do:
string dest = Gimme(5);
without getting the compiler error:
error CS0411: The ...
18
votes
5answers
7k views
C# 3.0 generic type inference - passing a delegate as a function parameter
I am wondering why the C# 3.0 compiler is unable to infer the type of a method when it is passed as a parameter to a generic function when it can implicitly create a delegate for the same method.
...
17
votes
3answers
1k views
Inferred type appears to detect an infinite loop, but what's really happening?
In Andrew Koenig's An anecdote about ML type inference, the author uses merge sort as a learning exercise for ML and is pleased to find an "incorrect" type inference:
Much to my surprise, the ...
16
votes
5answers
7k views
Scala: How to define “generic” function parameters?
I am trying to learn Scala now, with a little bit of experience in Haskell. One thing that stood out as odd to me is that all function parameters in Scala must be annotated with a type - something ...
15
votes
1answer
187 views
Why is the least upper bound of java.lang.Integer and java.lang.Double inferred as a acyclic type?
Consider this code:
val foo = if(true)
new java.lang.Double(4)
else
new java.lang.Integer(4)
The inferred type for foo is:
Number with Comparable[_ >: Double ...
15
votes
2answers
509 views
How is the type of `([] ==) []` inferred haskell?
It sounds silly, but I can't get it. Why can the expression [] == [] be typed at all? More specifically, which type (in class Eq) is inferred to the type of list elements?
In a ghci session, I see ...
14
votes
6answers
714 views
Why is such a function definition not allowed in haskell?
Shouldn't this definition be allowed in a lazy language like haskell in which functions are curried ?
apply f [] = f
apply f (x:xs) = apply (f x) xs
It's basically a function which applies the ...
14
votes
8answers
746 views
Type-inferring a constant in C#
In C#, the following type-inference works:
var s = "abcd";
But why can't the type be inferred when the variable is a constant?
The following throws a compile-time exception:
const var s = "abcd"; ...
13
votes
5answers
492 views
why write type declarations in Haskell?
I am new to Haskell and I am trying to understand why one needs to write type declarations. Since Haskell has type inference, when do I need the first line at all? GHCI seems to generate correct ...
13
votes
2answers
360 views
Why are polymorphic values not inferred in Haskell?
Numeric literals have a polymorphic type:
*Main> :t 3
3 :: (Num t) => t
But if I bind a variable to such a literal, the polymorphism is lost:
x = 3
...
*Main> :t x
x :: Integer
If I ...
12
votes
3answers
409 views
Type inference on Set failing?
Why is type inference failing here?
scala> val xs = List(1, 2, 3, 3)
xs: List[Int] = List(1, 2, 3, 3)
scala> xs.toSet map(_*2)
<console>:9: error: missing parameter type for expanded ...
12
votes
4answers
882 views
How to write a function for generic numbers?
I'm quite new to F# and find type inference really is a cool thing. But currently it seems that it also may lead to code duplication, which is not a cool thing. I want to sum the digits of a number ...
12
votes
2answers
536 views
Fundeps and GADTs: When is type checking decidable?
I was reading a research paper about Haskell and how HList is implemented and wondering when the techniques described are and are not decidable for the type checker. Also, because you can do similar ...
11
votes
1answer
423 views
Is it possible to place inequality constraints on haskell type variables?
Is it possible to place an inequality constraint on the typevariables of a function, à la foo :: (a ~ b) => a -> b as in GHC type family docs, except inequality rather than equality?
I realise ...
11
votes
4answers
293 views
The relationship between auto and decltype
Is
auto x = initializer;
equivalent to
decltype(initializer) x = initializer;
or
decltype((initializer)) x = initializer;
or neither?
11
votes
1answer
344 views
Why doesn't the C# compiler automatically infer the types in this code?
Why does the C# compiler not infer the fact that FooExt.Multiply() satisfies the signature of Functions.Apply()? I have to specify a separate delegate variable of type Func<Foo,int,int> for the ...
11
votes
1answer
155 views
Why generic type inference doesn't work in that case?
When trying to compile the following code in LINQPad :
void Main()
{
DriveInfo.GetDrives().Select(GetProviderName).Dump();
}
static string GetProviderName(DriveInfo drive)
{
// some ...
11
votes
1answer
493 views
Why can't F#'s type inference handle this?
I have a sequence of FileInfo, but I only care about their string names, so I want a sequence of string. At first I tried something like this:
Seq.map (fun fi -> fi.Name) fis
But for some ...
11
votes
4answers
4k views
F# functions with generic parameter types
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 in F# (certainly the ...
11
votes
4answers
759 views
When to exploit type inference in Haskell?
I'm curious as to how often experienced Haskell programmers really use type inference in practice. I often see it praised as an advantage over the always-explicit declarations needed in certain other ...
10
votes
1answer
155 views
How does GHCi pick names for type variables?
When using the interactive GHC interpreter, it's possible to ask for the inferred type of an expression:
Prelude> :t map
map :: (a -> b) -> [a] -> [b]
It seems that it takes the names ...
10
votes
1answer
436 views
Scala String vs java.lang.String - type inference
In the REPL, I define a function. Note the return type.
scala> def next(i: List[String]) = i.map {"0" + _} ::: i.reverse.map {"1" + _}
next: (i: List[String])List[java.lang.String]
And if I ...
10
votes
2answers
507 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 = filter . (/=)
...
10
votes
4answers
2k views
Ambiguous type variable error msg
I don't think it is a bug, but I am a bit puzzled as to why that doesn't work. A bonus question is why does it mention variable e? There is no variable e.
Prelude> :m +Control.Exception
...
9
votes
3answers
197 views
Strange type error in Haskell let-expression — what's the issue?
I came across a frustrating something in Haskell today.
Here's what happened:
I wrote a function in ghci and gave it a type signature
ghci complained about the type
I removed the type signature
...
9
votes
3answers
136 views
Unexpected effect of implicit cast on delegate type inference
I have a simple Money type with an implicit cast from decimal:
struct Money
{
decimal innerValue;
public static implicit operator Money(decimal value)
{
return new Money { ...
9
votes
3answers
258 views
Inferring generic types of nested static generic functions
Is the Java compiler able to infer the type of a generic static function from its context as the argument to another generic static function?
For example, I have a simple Pair class:
public class ...
9
votes
1answer
393 views
Type inference for a scala combinator calculus data model
I'm trying out a very light-weight encoding of combinator calculus in scala. Initially, I'm simply implementing the S and K combinators, application and constant values. Later I hope to lift scala ...
9
votes
7answers
421 views
Why does this work?
Why does this work? I'm not complaining, just want to know.
void Test()
{
int a = 1;
int b = 2;
What<int>(a, b);
// Why does this next line work?
What(a, b);
}
void ...
9
votes
2answers
474 views
How does Type Deduction work in Haskell?
I'm trying to broaden my mind by learning Haskell.
My self-inflicted homework was to build a clock-tick generator which would give me Poisson-distributed intervals, and the end result (after a long ...
9
votes
2answers
465 views
What are the limits of type inference?
What are the limits of type inference? Which type systems have no general inference algorithm?
8
votes
2answers
127 views
Scala Type-Inference For Type Constructor
I have a question regarding type-inferencing on Scala's type-constructors. I'm running Scala 2.9.1...
Suppose I defined Tree:
sealed trait Tree[C[_], A]
case class Leaf[C[_], A](a: A) extends ...
8
votes
2answers
255 views
Is this Haskell type inference in action, or something else?
I'm working through the online LYAH book (the link will take you directly to the section that my question concerns).
The author defines a binary tree data type, and shows how it can be made an ...
8
votes
4answers
260 views
See inferred types in complex OCaml code
I'm a OCaml newbie working with some pretty complex (at least for me) OCaml code I didn't write. It would help a lot to understand it if I could see the inferred types for some of the values, as I can ...
8
votes
3answers
271 views
C# constructor generic parameters inference
Why does C# infer generic parameters for methods but not for constructor?
new Tuple<int, int>(5, 5) vs. Tuple.Create(5, 5)
8
votes
4answers
406 views
Type inference in Java (à la C#) [closed]
Ever since I heard of type inference (in Haskell), I lived under the impression that Java is the exact opposite, i.e., it has no type inference. Recently though, I had an aha moment and realized that ...
8
votes
1answer
261 views
Is it possible to do the following with auto in C++0x?
Eric Lippert has written an article about Why no var on fields? in C#. I was curious, will we be able to do that in C++0x? ex.
struct mystruct_t
{
auto i = 0, d = 0.0, s = std::string("zero");
};
...
8
votes
4answers
798 views
C# Generic method type argument inference
Is there any way that I can generalise the type definitions here?
Ideally, I'd like to be able to change the type of 'testInput' and have test correctly infer the type at compile time.
public static ...
8
votes
1answer
341 views
How to call a generic method with an anonymous type involving generics?
I've got this code that works:
def testTypeSpecialization: String = {
class Foo[T]
def add[T](obj: Foo[T]): Foo[T] = obj
def addInt[X <% Foo[Int]](obj: X): X = {
add(obj)
...