共用方式為


XxHash32.TryHash 方法

定義

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

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

參數

source
ReadOnlySpan<Byte>

要進行雜湊處理的資料。

destination
Span<Byte>

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

bytesWritten
Int32

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

seed
Int32

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

傳回

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

適用於