标签: list f#
与F#
DropDownList
我试过了
let x = [1 .. 5] |> List.filter(fun x -> x = 4)
答案 0 :(得分:5)
您正在寻找不等式函数<>:
<>
let x = [1 .. 5] |> List.filter(fun x -> x <> 4) val x : int list = [1; 2; 3; 5]