共用方式為


Seq.countBy<'T,'Key> 函式 (F#)

將索引鍵產生函式套用至序列的每個項目,並傳回一個序列,這個序列包含唯一索引鍵和這些索引鍵在原始序列中出現的次數。

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

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

// Signature:
Seq.countBy : ('T -> 'Key) -> seq<'T> -> seq<'Key * int> (requires equality)

// Usage:
Seq.countBy projection source

參數

  • projection
    型別:'T -> 'Key

    函式,將輸入序列的每個項目轉換成要和其餘索引鍵比較的索引鍵。

  • source
    型別:seq<'T>

    輸入序列。

例外狀況

例外狀況

條件

ArgumentNullException

當輸入序列為 null 時擲回。

傳回值

唯一的索引鍵和它們的原始的序列中的項目編號的序列。

備註

請注意這個函式會傳回周遊整個初始順序,逐一查看該順序時的順序。 因此,這個函式不應該搭配大型或無限序列使用。 這個函式不會假設原本序列的排序方式。

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

範例

下列範例示範使用 Seq.countBy判斷序列中是奇數或偶數的項目數目

let mySeq1 = seq { 1.. 100 }
let printSeq seq1 = Seq.iter (printf "%A ") seq1; printfn ""
let seqResult = Seq.countBy (fun elem ->
    if (elem % 2 = 0) then 0 else 1) mySeq1

printSeq seqResult
  

平台

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.Seq 模組 (F#)

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