Free cookie consent management tool by TermsFeed Policy Generator

Changeset 13194


Ignore:
Timestamp:
11/16/15 21:32:45 (8 years ago)
Author:
abeham
Message:

#2470: merged r12907 to stable

File:
1 edited

Legend:

Unmodified
Added
Removed
  • stable/HeuristicLab.Core/3.3/Collections/ItemDictionary.cs

    r12009 r13194  
    5959    public ItemDictionary() : base() { }
    6060    public ItemDictionary(int capacity) : base(capacity) { }
     61    public ItemDictionary(IEqualityComparer<TKey> comparer) : base(comparer) { }
    6162    public ItemDictionary(IDictionary<TKey, TValue> dictionary) : base(dictionary) { }
     63    public ItemDictionary(int capacity, IEqualityComparer<TKey> comparer) : base(capacity, comparer) { }
     64    public ItemDictionary(IDictionary<TKey, TValue> dictionary, IEqualityComparer<TKey> comparer) : base(dictionary, comparer) { }
    6265
    6366    public object Clone() {
Note: See TracChangeset for help on using the changeset viewer.