共用方式為


XxHash64.TryHash 方法

定義

嘗試將所提供數據的 XxHash64 哈希計算到提供的目的地。

public static bool TryHash (ReadOnlySpan<byte> source, Span<byte> destination, out int bytesWritten, long seed = 0);
static member TryHash : ReadOnlySpan<byte> * Span<byte> * int * int64 -> bool
Public Shared Function TryHash (source As ReadOnlySpan(Of Byte), destination As Span(Of Byte), ByRef bytesWritten As Integer, Optional seed As Long = 0) As Boolean

參數

source
ReadOnlySpan<Byte>

要進行雜湊處理的資料。

destination
Span<Byte>

接收計算哈希值的緩衝區。

bytesWritten
Int32

當此方法傳回時,包含寫入至 destination 的位元組數目。

seed
Int64

這個哈希計算的種子值。 預設值是零。

傳回

true 如果 destination 夠長,無法 (8 個字節) 接收計算哈希值,則為 , false否則為 。

適用於