- Timestamp:
- 09/02/15 13:16:18 (9 years ago)
- Location:
- branches/crossvalidation-2434
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/crossvalidation-2434
- Property svn:mergeinfo changed
-
branches/crossvalidation-2434/HeuristicLab.Core
- Property svn:mergeinfo changed
/trunk/sources/HeuristicLab.Core (added) merged: 12907
- Property svn:mergeinfo changed
-
branches/crossvalidation-2434/HeuristicLab.Core/3.3/Collections/ItemDictionary.cs
r12012 r12931 59 59 public ItemDictionary() : base() { } 60 60 public ItemDictionary(int capacity) : base(capacity) { } 61 public ItemDictionary(IEqualityComparer<TKey> comparer) : base(comparer) { } 61 62 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) { } 62 65 63 66 public object Clone() {
Note: See TracChangeset
for help on using the changeset viewer.