我有这个简单的F#功能:
let compareNum x =
let y = 10
match x with
| _ when x = y -> 0
| _ when x > y -> 1
| _ when x < y -> -1
但是,F#编译器给出了“此表达式上的不完整模式匹配”警告。在这种情况下,所有案例都应涵盖所有模式。
我还在Chris Smith的第一版Programming F#book中的“Pattern Matching”部分看到了一个类似的例子。所以在F#的后期版本中可能会改变某些内容?