I'm curious why this
let f = (fun a b -> a, b) >> obj.Equals
gives the error
No accessible member or object constructor named 'Equals' takes 1 arguments
but this works
let f = (fun a -> a, a) >> obj.Equals
|
I'm curious why this
gives the error
but this works
| |||
|
feedback
|
|
Consider the types. You could of course define a new combinator for composing binary and unary functions:
in which case you can use it in your example instead of | ||||
feedback
|
|
Without defining a new combinator operator:
| ||||
|
feedback
|
a -> 'b * 'abut here has type'c * 'd, which is a bit more informative. It more clearly corresponds to what kvb wrote in his nice answer. I'm not sure why you're getting a different message... – Tomas Petricek Sep 12 '11 at 23:10