OCaml: Function input ('a * 'b -> 'c)
let rec
map2 (f : 'a * 'b -> 'c) (l1 : 'a list) (l2 : 'b list) : 'c list =
match (l1,l2) with
| ([], []) -> []
| (x::l1),(y::l2) -> f (x, y)::(map2 f (l1, l2))
It is returning:
Error: This expression has type 'a list * 'a list
but an expression was expected of type 'a list
W开发者_运维百科hat am I doing wrong here??
The error is map2 f (l1, l2)
(as the error location would have told you). You're passing (l1, l2)
as a tuple while they should be separate curried parameters : map2 f l1 l2
.
Also, your function does not handle the cases of different length (patterns with one list empty but not the other). In this case, the function will raise a match failure, you may want to raise a more specialized error such as invalid_arg "map2"
or something.
精彩评论