我有一个 F# 函数:
let removeEven (listToGoUnder : _ list) =
let rec listRec list x =
match list with
| [] -> []
| head::tail when (x%2 = 0) -> head :: listRec (tail) (x+1)
| head::tail -> listRec (tail) (x+1)
listRec listToGoUnder 0
它删除列表中偶数索引处的所有元素。如果我给列表一些输入,它会起作用,就像removeEven ['1';'2';'3']
我得到['1';'3']
的那样。但是当我插入一个空列表作为参数时,我得到了这个错误:
stdin(78,1):错误 FS0030:值限制。值“it”已被推断为具有泛型类型
val it : '_a list 将 'it' 定义为一个简单的数据项,使其成为具有显式参数的函数,或者,如果您不希望它是通用的,则添加一个类型注释。
帮忙,有人吗?