You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// <typeparam name="T">The type of the data that will be added to the hash state. It must be a value type and must not contain any reference type fields.</typeparam>
35
32
/// <remarks>
36
33
/// The <typeparamref name="T" /> value will be added to the hash state in memory layout order, including any padding bytes.
37
34
/// Use caution when using this overload with non-primitive structs or when hash values are to be compared across machines with different struct layouts or byte orders.
35
+
/// <see cref="byte"/> is the only type that is guaranteed to be consistent across platforms.
38
36
/// </remarks>
39
37
/// <exception cref="NotSupportedException">Thrown when <typeparamref name="T"/> is a reference type or contains any fields of reference types.</exception>
40
38
voidUpdate<T>(ReadOnlySpan<T>input)whereT:struct;
41
39
42
-
/// <summary>Update the hash state with the <paramref name="input" /> value.</summary>
0 commit comments