-
Notifications
You must be signed in to change notification settings - Fork 36
M_CodeJam_HashCode_CombineValues__1
andrewvk edited this page Mar 30, 2016
·
7 revisions
[This is preliminary documentation and is subject to change.]
Combines hash codes.
Namespace: CodeJam
Assembly: CodeJam (in CodeJam.dll) Version: 1.0.0.0 (1.0.0.0)
C#
[PureAttribute]
public static int CombineValues<T>(
[CanBeNullAttribute][InstantHandleAttribute] IEnumerable<T> values
)
VB
<PureAttribute>
Public Shared Function CombineValues(Of T) (
<CanBeNullAttribute><InstantHandleAttribute> values As IEnumerable(Of T)
) As Integer
F#
[<PureAttribute>]
static member CombineValues :
[<CanBeNullAttribute>][<InstantHandleAttribute>] values : IEnumerable<'T> -> int
- values
- Type: System.Collections.Generic.IEnumerable(T)
The sequence to combine hash codes.
- T
Type: Int32
Combined hash code.