Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/22/14 13:38:09 (10 years ago)
Author:
abeham
Message:

#2142: Removed (First|Second)Values property and added (First|Second)Keys property. To obtain the values there exists a separate property anyway.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Collections/3.3/BidirectionalLookup.cs

    r9456 r10365  
    6262    }
    6363
    64     public IEnumerable<IEnumerable<TSecond>> FirstValues {
    65       get { return firstToSecond.Values.AsEnumerable(); }
    66     }
    67 
    68     public IEnumerable<IEnumerable<TFirst>> SecondValues {
    69       get { return secondToFirst.Values.AsEnumerable(); }
     64    public IEnumerable<TFirst> FirstKeys {
     65      get { return firstToSecond.Keys.AsEnumerable(); }
     66    }
     67
     68    public IEnumerable<TSecond> SecondKeys {
     69      get { return secondToFirst.Keys.AsEnumerable(); }
    7070    }
    7171
Note: See TracChangeset for help on using the changeset viewer.