Ejemplo n.º 1
0
        internal static DictionaryImpl <int, TValue, TComparer> CreateInt <TValue, TComparer>(
            ConcurrentDictionary <int, TValue, TComparer> topDict, int capacity)
            where TComparer : struct, IEqualityComparer <int>
        {
            var result = new DictionaryImplInt <TValue, TComparer>(capacity, topDict);

            return(result);
        }
Ejemplo n.º 2
0
 private DictionaryImplInt(int capacity, DictionaryImplInt <TValue, TComparer> other)
     : base(capacity, other)
 {
 }