我正在尝试创建一个由主要参数组成的管道,该参数是一个带有常量的列表。
作为一个简单的例子
type ClockType = | In | Out
let ClockMap index offset =
match index with
| index when index + offset % 2 = 0 -> In
| _ -> Out
let MapIt offset = [0 .. 23] |> List.map offset
当我取出offset
. 我试过做 atuple
但它不喜欢int list
. 解决此问题的最佳方法是什么?
我只是在学习 F#,所以请耐心等待。