gpt4 book ai didi

f# - 类型 'int' 不支持运算符 '=='

转载 作者:行者123 更新时间:2023-12-04 03:11:18 24 4
gpt4 key购买 nike

我想像这样计算二项式:

let t = seq { 1..10 } |> Seq.takeWhile (fun e -> e % 2 == 0)

但编译器提示
playground.fsx(27,59): error FS0001: The type 'int' does not support the operator '=='

我究竟做错了什么?

最佳答案

F# 使用单个 =对于相等运算符:

let t = seq { 1..10 } |> Seq.takeWhile (fun e -> e % 2 = 0)

关于f# - 类型 'int' 不支持运算符 '==',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29071064/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com