给予
type Unit = {
Name : string
Abbreviation : string
Value : float
}
module Lets =
let meter = { Name = "meter"; Abbreviation = "m"; Value = 1.0 }
let millimeter = { Name = "millimeter"; Abbreviation = "mm"; Value = 1e-3 }
如何使用此签名创建函数?
let units () : Units[] = ...
答案 0 :(得分:1)
F#模块在编译时只是静态类。
使用反射,您应该可以通过以下方式获取这些值:
module Lets =
type Dummy = | Dummy
let meter = { Name = "meter"; Abbreviation = "m"; Value = 1.0 }
let millimeter = { Name = "millimeter"; Abbreviation = "mm"; Value = 1e-3 }
let t = typeof<Lets.Dummy>.DeclaringType
t.GetProperties() |> Array.map(fun p -> p.GetValue(null, null) :?> Unit)
获取模块的类型很棘手,但是这种技巧将为您做到这一点。
编辑:
已更新为直接投射到Unit
。
所示的类型转换是不安全的,如果GetValue
不返回Unit
类型,则将抛出该转换。
此外,unit
是F#中的一种类型,使用其他名称可能会更清楚。