I have three functions that ought to be equal:

let add1 x = x + 1
let add2 = (+) 1
let add3 = (fun x -> x + 1) 

Why do the types of these methods differ?
add1 and add3 are int -> int, but add2 is (int -> int). They all work as expected, I am just curious as to why FSI presents them differently?

link|improve this question

feedback

1 Answer

up vote 12 down vote accepted

This is typically an unimportant distinction, but if you're really curious, see the Arity Conformance for Values section of the F# spec.

My quick summary would be that (int -> int) is a superset of int -> int. Since add1 and add3 are syntactic functions, they are inferred to have the more specific type int -> int, while add2 is a function value and is therefore inferred to have the type (int -> int) (and cannot be treated as an int -> int).

link|improve this answer
1  
The part of the spec you referred to had to do with presenting functions to other languages, saying that only 'true' functions can implement int -> int. I made a C# project refer to an F# project, and sure enough, add1 and add3 are methods reachable from C# while add2 is presented as an FSharpFunc<int,int>! – Robert Jeppesen Feb 23 '11 at 16:04
i wondered about this too, thanks for clarifying. this is also the case with composed functions? ( ie let f = b >> m ) where f assumes parameter that is passed into b – Alex Feb 23 '11 at 16:56
@Alex - the only things which will be compiled as methods are syntactic functions (either let f x = ... or let f = fun x -> ...). let f = b >> m is not a syntactic function: f is defined as the value obtained by applying the operator (>>) to values b and m. I hope that answers your question. – kvb Feb 23 '11 at 17:22
1  
So to close up, in order to make composed functions available to other languages you'll have to wrap them in another function, somewhat negating the 'higher-order' argument for F#, at least in interop scenarios? I don't see a good technical reason for this? – Robert Jeppesen Feb 23 '11 at 19:47
@kvb - Thanks for your answer, much appreciated! – Robert Jeppesen Feb 23 '11 at 19:48
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.