gpt4 book ai didi

f# - 从联合案例中提取值(value)

转载 作者:行者123 更新时间:2023-12-04 10:38:21 25 4
gpt4 key购买 nike

在 Fsharp 应用程序中,我定义了几个联合案例类型为

type A = A of String
type B = B of String
type C = C of String

我想定义一个函数来从联合案例实例中提取值。
let getValue( ctor: String-> 'a) = 
...implementation here

反正有没有完成这样的任务?
谢谢。

最佳答案

假设您有:

type A = A of string
type B = B of string
type C = C of string

let a = A "hello"
let b = B "world"
let c = C "!"

有很多方法可以提取这些值,这里有一些:

个人拆包机
let getValueA (A v) = v
let getValueB (B v) = v
let getValueC (C v) = v

let valueOfA = getValueA a
let valueOfB = getValueB b
let valueOfC = getValueC c

方法重载
type T =
static member getValue (A v) = v
static member getValue (B v) = v
static member getValue (C v) = v

let valueOfA = T.getValue a
let valueOfB = T.getValue b
let valueOfC = T.getValue c

函数重载
type GetValue = GetValue with
static member ($) (GetValue, (A v)) = v
static member ($) (GetValue, (B v)) = v
static member ($) (GetValue, (C v)) = v

let inline getValue x : string = GetValue $ x

let valueOfA = getValue a
let valueOfB = getValue b
let valueOfC = getValue c

反射(reflection)
open Microsoft.FSharp.Reflection
let getValue a =
FSharpValue.GetUnionFields (a, a.GetType())
|> snd
|> Seq.head
:?> string

let valueOfA = getValue a
let valueOfB = getValue b
let valueOfC = getValue c

重新设计您的 DU
type A = A
type B = B
type C = C

type MyDU<'a> = MyDU of 'a * string

let a = MyDU (A, "hello")
let b = MyDU (B, "world")
let c = MyDU (C, "!" )

let getValue (MyDU (_, v)) = v

let valueOfA = getValue a
let valueOfB = getValue b

重新设计接口(interface)
type IWrapped<'a> =
abstract getValue: 'a

type A = A of string with interface IWrapped<string> with member t.getValue = let (A x) = t in x
type B = B of string with interface IWrapped<string> with member t.getValue = let (B x) = t in x
type C = C of string with interface IWrapped<string> with member t.getValue = let (C x) = t in x

let valueOfA = (a :> IWrapped<string>).getValue

关于f# - 从联合案例中提取值(value),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24217268/

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