gpt4 book ai didi

F# 模式匹配一​​系列数字

转载 作者:行者123 更新时间:2023-12-02 05:21:50 30 4
gpt4 key购买 nike

我有一个函数 getFullFitness

let getFullFitness population = 
ResizeArray(population |> Seq.map snd) |> Seq.sum

我在函数 realTick 中进行模式匹配
let realTick population = 
match(getFullfitness population) with
|(50) -> population
| _ -> childGeneration population

问题是在线|(50) -> 人口。由于 getFullFitness 返回一个整数总和,我如何在 realTick 中匹配 0 到 50 之间的值?

最佳答案

一种方法是使用 guard -

|t when t < 50 -> ...

关于F# 模式匹配一​​系列数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24835870/

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