Operators.hash<'T> 函式 (F#)
泛型雜湊函式,設計成傳回依據 = 運算子而相等之項目的相等雜湊值。 它預設會使用 F# 聯集的結構化雜湊、記錄和 Tuple 型別,來產生型別之完整內容的雜湊。 藉由針對每個型別實作 GetHashCode,即可一個型別接著一個型別地調整函式的準確行為。
命名空間/模組路徑:Microsoft.FSharp.Core.Operators
組件:FSharp.Core (在 FSharp.Core.dll 中)
// Signature:
hash : 'T -> int (requires equality)
// Usage:
hash obj
參數
obj
型別:'T輸入物件。
傳回值
已處理的雜湊。
備註
這個函式在已編譯的組件中名為 Hash。 如果您是透過 F# 以外的語言,或是透過反映來存取函式,請使用這個名稱。
範例
下列範例顯示使用雜湊函式產生各種資料型別的雜湊。
let show a = printfn "hash(%A) : %d" a (hash a)
show 1;
show 2;
show "1"
show "2"
show "abb"
show "aBc" // case-sensitive
show None;
show (Some 1);
show (Some 0);
show [1;2;3];
show [1;2;3;4;5;6;7;8];
show [1;2;3;4;5;6;7;8;9;10;11];
show [1;2;3;4;5;6;7;8;9;10;11;12;13;14;15]
平台
Windows 8 中, Windows 7, Windows Server 2012 上, Windows Server 2008 R2
版本資訊
F# 核心程式庫版本
支援版本:2.0, 4.0,可攜式執行檔 (PE)。