假设下面的声明,如果我想检查它们是否都是正数,我如何能够从列表ats
中取出ints
并获取type Item = string
type ItemList = Item * int
let ad1 = ("machine", 2)
let ad2 = ("coffee", 1)
let ad3 = ("washer", 2)
let ats = [ad1; ad2; ad3; ad1; ad2]
?非常感谢提示。
makeTextSprite()
答案 0 :(得分:3)
let ints = ats |> List.map snd
let allPositive = ints |> List.forall (fun x -> x > 0)