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
link|improve this question

The error message I get when I try that is This expression was expected to have type a -> 'b * 'a but 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
feedback

2 Answers

up vote 3 down vote accepted

Consider the types. (>>) has type ('a -> 'b) ->('b -> 'c) -> ('a -> 'c), but you're trying to call it with arguments of type 'a -> ('b -> 'a*'b) and obj * obj -> bool, which can't be made to fit together like that.

You could of course define a new combinator for composing binary and unary functions:

let ( >>* ) f g a b = f a b |> g

in which case you can use it in your example instead of (>>).

link|improve this answer
Ah. I overlooked >>'s first arg being unary. That strange error message (which I'm still getting) was throwing me off. Thanks. – Daniel Sep 13 '11 at 2:10
feedback

Without defining a new combinator operator:

let f = (fun a b -> a, b) >> (<<) obj.Equals

>> (<<) is a nice trick, and can also be extended for more arguments:

let compose3 f g = f >> (<<) ((<<) g)
val compose3 : ('a -> 'b -> 'c -> 'd) -> ('d -> 'e) -> ('a -> 'b -> 'c -> 'e)
link|improve this answer
+1 That's a neat trick! – Daniel Sep 13 '11 at 14:05
feedback

Your Answer

 
or
required, but never shown

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