Tagged Questions
The hindley-milner tag has no wiki summary.
28
votes
4answers
4k views
What is Hindley-Milner?
I encountered this term "Hindley-Milner" which I'm not sure if grasp what it means. I read Steve Yegge's "Dynamic Languages Strike Back" and "The Pinocchio Problem" and Daniel Spiewak's "What is ...
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 ...
9
votes
2answers
466 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
5answers
863 views
What makes Haskell's type system more “powerful” than other languages' type systems?
Reading Disadvantages of Scala type system versus Haskell?, I have to ask: what is it, specifically, that makes Haskell's type system more powerful than other languages' type systems (C, C++, Java). ...
6
votes
3answers
193 views
Type inference implemented in C++
Is there an implementation in C++, of Damas-Hindley-Milner style type inference, preferably using modern C++ techniques?
6
votes
2answers
273 views
Hindley-Milner algorithm in Java
I'm working on a simple dataflow based system (imagine it like a LabView editor/runtime) written in Java. The user can wire blocks together in an editor and I need type inference to ensure the ...
6
votes
1answer
460 views
Damas-Hindley-Milner type inference algorithm implementation
I'm looking for information about the well-known Damas-Hindley-Milner algorithm
to do type inference for functional languages, especially information about implementation.
I already know how to do ...
6
votes
2answers
752 views
Describe the Damas-Milner type inference in a way that a CS101 student can understand
Hindley-Milner is a type system that is the basis of the type systems of many well known functional programming languages. Damas-Milner is an algorithm that infers (deduces?) types in a ...
3
votes
1answer
162 views
Hindley Milner Type Inference in F#
Can somebody explain step by step type inference in following F# program:
let rec sumList lst =
match lst with
| [] -> 0
| hd :: tl -> hd + sumList tl
I specifically want to see ...
2
votes
2answers
124 views
Keeping type generic without η-expansion
What I'm doing: I'm writing a small interpreter system that can parse a file, turn it into a sequence of operations, and then feed thousands of data sets into that sequence to extract some final value ...
0
votes
3answers
342 views
What causes this Standard-ML type error?
I was trying to make a tail-recursive version of this very simple SML function:
fun suffixes [] = [[]]
| suffixes (x::xs) = (x::xs) :: suffixes xs;
During the course of this, I was using type ...