如何在f#中解包列表中的联合值

时间:2013-12-07 03:25:19

标签: f# discriminated-union

您知道要解开单个联合类型的值,您必须这样做:

type Foo = Foo of int*string

let processFoo foo =
    let (Foo (t1,t2)) = foo
    printfn "%A %A" t1 t2 

但我的问题是:如果有办法为列表做到这一点?:

let processFooList (foolist:Foo list )  =
    let ??? = foolist // how to get a int*string list
    ...

感谢。

3 个答案:

答案 0 :(得分:3)

最好的方法是使用与List.map结合的功能

let processFooList (foolist:Foo list )  = foolist |> List.map (function |Foo(t1,t2)->t1,t2)

答案 1 :(得分:1)

没有用于将列表从Foo转换为int * string的预定义活动模式,但您可以将命名模式§7.2(解构单例联合)与投影合并到您自己的单个中case Active Pattern §7.2.3

let asTuple (Foo(t1, t2)) = t1, t2      // extract tuple from single Foo
let (|FooList|) =  List.map asTuple     // apply to list

用作函数参数:

let processFooList (FooList fooList) =  // now you can extract tuples from Foo list
    ...                                 // fooList is an (int * string) list

在let-binding中使用:

let (FooList fooList) = 
    [ Foo(1, "a"); Foo(2, "b") ]
printfn "%A" fooList                    // prints [(1, "a"); (2, "b")]

答案 2 :(得分:0)

提炼/总结/重述/重新发布其他两个答案,您的引用行:

let ??? = foolist // how to get a int*string list

可以成为:

let ``???`` = foolist |> List.map (function |Foo(x,y) -> x,y)

如果您正在编写转换,则可以使用以下任一方法在已定义活动模式的参数中进行匹配:

let (|FooList|) = List.map <| fun (Foo(t1, t2)) -> t1,t2
let (|FooList|) = List.map <| function |Foo(t1, t2) -> t1,t2

然后可以按如下方式使用:

let processFooList (fooList:Foo list )  =
    // do something with fooList