元组包括对, 三元组等。它可以是相同或不同的类型。你可以通过有效使用模式来访问元组元素。让我们来看一个例子。
let showTuple tupleValues =match tupleValues with| (a, b, c, d) ->
printf "%d %d %s %s" a b c dshowTuple (1, 2, "Hello", "Fsharp")// passing tuples to function
【F#使用模式匹配访问元组】输出:
1 2 Hello Fsharp