共用方式為


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,可攜式執行檔 (PE)。

請參閱

參考

Collections.List 模組 (F#)

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