List.filter<'T> 函数 (F#)

返回一个新集合,其中仅包含给定谓词为其返回 true 的集合的元素。

命名空间/模块路径:Microsoft.FSharp.Collections.List

程序集:FSharp.Core(在 FSharp.Core.dll 中)

// Signature:
List.filter : ('T -> bool) -> 'T list -> 'T list

// Usage:
List.filter predicate list

参数

  • predicate
    类型:'T -> bool

    用于测试输入元素的函数。

  • list
    类型:'T list

    输入列表。

返回值

一个仅包含满足该谓词的元素的列表。

备注

此函数在编译的程序集中名为 Filter。 如果从 F# 以外的语言中访问函数,或通过反射访问成员,请使用此名称。

示例

下面的示例说明 List.filter 的用法。

let evenOnlyList = List.filter (fun x -> x % 2 = 0) [1; 2; 3; 4; 5; 6]

生成的列表为 [2; 4; 6]。

以下示例显示 List.filter 的另一个典型用法。

let data = [("Cats",4);
            ("Dogs",5);
            ("Mice",3);
            ("Elephants",2)]
let res = data |> List.filter (fun (nm,x) -> nm.Length <= 4)
printfn "Animals with short names: %A" res
  

平台

Windows 8,Windows 7,Windows server 2012中,Windows server 2008 R2

版本信息

F#核心库版本

支持:2.0,4.0,可移植

请参见

参考

Collections.List 模块 (F#)

Microsoft.FSharp.Collections 命名空间 (F#)