I have a foo function defined as follows
fun foo x y = x (x (x y));
How to deduce the function type?
The answer is:
val foo = fn : ('a -> 'a) -> 'a -> 'a
|
I have a
How to deduce the function type? The answer is:
|
|||
|
|
|
This process is called type inference which is done in SML by Hindley–Milner algorithm. First let's start with a generic type signature for
where We have the following steps:
|
||||
|
|