1 implementation of ISHash
Microsoft.Diagnostics.DataContractReader.Contracts (1)
Contracts\SHash_1.cs (1)
18private class SHash<TKey, TEntry> : ISHash<TKey, TEntry> where TEntry : IData<TEntry>
5 references to ISHash
Microsoft.Diagnostics.DataContractReader.Abstractions (2)
Contracts\ISHash.cs (2)
27public TEntry LookupSHash<TKey, TEntry>(ISHash<TKey, TEntry> hashTable, TKey key) where TEntry : IData<TEntry> => throw new NotImplementedException(); 28public ISHash<TKey, TEntry> CreateSHash<TKey, TEntry>(Target target, TargetPointer address, Target.TypeInfo type, ITraits<TKey, TEntry> traits) where TEntry : IData<TEntry> => throw new NotImplementedException();
Microsoft.Diagnostics.DataContractReader.Contracts (3)
Contracts\Loader_1.cs (1)
669public ISHash<uint, DynamicILBlobEntry> HashTable { get; init; }
Contracts\SHash_1.cs (2)
27ISHash<TKey, TEntry> ISHash.CreateSHash<TKey, TEntry>(Target target, TargetPointer address, Target.TypeInfo type, ITraits<TKey, TEntry> traits) 48TEntry ISHash.LookupSHash<TKey, TEntry>(ISHash<TKey, TEntry> hashTable, TKey key)