|  | MurmurHashSymmetricHashT Method | 
 
            Compute a hash that is symmetric in its arguments--that is,
            where the order of appearance of elements does not matter.
            This is useful for hashing sets, for example.
            
 
    Namespace: 
   Akka.Util
    Assembly:
   Akka (in Akka.dll) Version: 1.2.3.42 (1.2.3.42)
 Syntax
Syntaxpublic static int SymmetricHash<T>(
	IEnumerable<T> xs,
	uint seed
)
static member SymmetricHash : 
        xs : IEnumerable<'T> * 
        seed : uint32 -> int 
Parameters
- xs
- Type: System.Collections.GenericIEnumerableT
 TBD
- seed
- Type: SystemUInt32
 TBD
Type Parameters
- T
- [Missing <typeparam name="T"/> documentation for "M:Akka.Util.MurmurHash.SymmetricHash``1(System.Collections.Generic.IEnumerable{``0},System.UInt32)"] 
Return Value
Type: 
Int32TBD
 See Also
See Also