I'm trying to use List.fold on a record type that defines an operator overload for +, but I'm getting a type mismatch error when trying to use the (+) operator as the lambda passed to fold. Here's a simplified snippet that exemplifies my problem:
// a record type that also includes an overload for '+'
type Person =
{ Name : string; Age: int }
static member ( + ) (x: Person, y: Person) = x.Age + y.Age
the + overload works just fine
> jen + kevin;;
val it : int = 87
but say I have a list of person:
> let people = [kevin;jen];;
I can't use List.fold to sum all the ages:
> List.fold (+) 0 people;;
List.fold (+) 0 people;;
----------------^^^^^^
error FS0001: Type constraint mismatch. The type
int
is not compatible with type
Person
The type 'int' is not compatible with the type 'Person'
I'm guessing the problem is that F# isn't able to discern the overload of + when passed in this fashion, since fold is implicitly typing the list to int because I used '0' as the accumulator. I'm not sure if it's possible to get my custom operator overload to work correctly, and if it is possible, what I'm missing to make it happen. (I'm assuming it is possible to make this work because you can use + on floats).
edit
I understand that the problem is the the type mismatch. As JaredPar writes, I get that I could write a lambda to take two person records and add the ages. That's not my point. The issue is that it seems to me there should be a way to get the + operator overload I already wrote to be acknowledged by fold as a valid overload.
another edit
Thanks all for your input. One thing that's becoming clear is that it isn't possible to do what I want, but that's fine. I learned something! What I'm seeing is that the resolution of operator overloads is such that they don't work in every context--so with fold there is no seamless way to make + passed as a lambda work just like it would when used as an infix ala jen + kevin. It makes total sense why this doesn't work right. The resolutions people have suggested to resolve this problem basically are one-off's to handle the particular issue of fold--what I'm really after is how to get the correct operator overload to get picked for every situation (i.e. foldback, etc)--I didn't want to have to write a bunch of special case code for working over lists. It's pretty clear not what F#'s operator overload resolution has some limitations that make it work to a skin-deep level, which is fine.
+member makes no sense. Why would adding two people together return the sum of their ages? – ChaosPandion Jan 10 at 2:10(+)operator just like the the built-in operator wherever it makes sense and F# will identify and use it without any issues (e.g.List.map2 (+) [jen] [kevin]). The problem in this case is that you are trying to use anintseed, aperson -> person -> intaccumulator, and aperson list, which isn't compatible with howfoldworks. – kvb Jan 10 at 19:25