共用方式為


Set.partition<'T> 函式 (F#)

分割為兩個集合包含指定的述詞傳回 true和 項目集 false分別

命名空間/模組路徑:Microsoft.FSharp.Collections.Set

組件:FSharp.Core (在 FSharp.Core.dll 中)

// Signature:
Set.partition : ('T -> bool) -> Set<'T> -> Set<'T> * Set<'T> (requires comparison)

// Usage:
Set.partition predicate set

參數

  • predicate
    型別:'T -> bool

    用來測試集合項目的函式。

  • set
    型別:Set<'T>

    輸入集。

傳回值

設定組。 第一個是包含之元素的哪一個 predicate傳回 true和第二個包含的項目 predicate傳回 false

備註

這個函式是名為 Partition中 已編譯的組件。 如果從一個語言,F # 以外,或透過反映存取函式使用這個名稱。

平台

Windows 7、Windows Vista SP2、Windows XP SP3、Windows XP x64 SP2、Windows Server 2008 R2、Windows Server 2008 SP2、Windows Server 2003 SP2

版本資訊

F# 執行階段

支援版本:2.0、4.0

Silverlight

支援版本:3

請參閱

參考

Collections.Set 模組 (F#)

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