Seq.distinctBy<'T,'Key> 函数 (F#)
根据泛型哈希和由给定的键生成函数返回的键上的相等性比较,返回不包含重复项的序列。 如果某个元素在序列中出现多次,则后面出现的该元素将被丢弃。
命名空间/模块路径:Microsoft.FSharp.Collections.Seq
程序集:FSharp.Core(在 FSharp.Core.dll 中)
// Signature:
Seq.distinctBy : ('T -> 'Key) -> seq<'T> -> seq<'T> (requires equality)
// Usage:
Seq.distinctBy projection source
参数
projection
类型:'T -> 'Key一个将序列项转换为可比较的键的函数。
source
类型:seq<'T>输入序列。
异常
异常 |
Condition |
---|---|
在输入序列为 null 时引发。 |
返回值
结果序列。
备注
此函数在编译的程序集中名为 DistinctBy。 如果从 F# 以外的语言中访问函数,或通过反射访问成员,请使用此名称。
示例
以下示例演示如何使用 Seq.distinctBy 只保存序列中有不同绝对值的元素。 第一个给出结果的元素被保留在新的序列中,因此从 1 到 5 的正数被放置在从-5 到 + 10 的序列中。
let inputSequence = { -5 .. 10 }
let printSeq seq1 = Seq.iter (printf "%A ") seq1; printfn ""
printfn "Original sequence: "
printSeq inputSequence
printfn "\nSequence with distinct absolute values: "
let seqDistinctAbsoluteValue = Seq.distinctBy (fun elem -> abs elem) inputSequence
seqDistinctAbsoluteValue |> printSeq
平台
Windows 8,Windows 7,Windows server 2012中,Windows server 2008 R2
版本信息
F#核心库版本
支持:2.0,4.0,可移植