Free cookie consent management tool by TermsFeed Policy Generator

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

#2142: merged to stable

Location:
stable
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • stable

  • stable/HeuristicLab.Collections/3.3/BidirectionalDictionary.cs

    r9456 r10376  
    6767    }
    6868
    69     public IEnumerable<TFirst> FirstValues {
     69    public IEnumerable<TFirst> FirstKeys {
    7070      get { return firstToSecond.Keys; }
    7171    }
    7272
    73     public IEnumerable<TSecond> SecondValues {
     73    public IEnumerable<TSecond> SecondKeys {
    7474      get { return secondToFirst.Keys; }
    7575    }
  • stable/HeuristicLab.Collections/3.3/BidirectionalLookup.cs

    r9456 r10376  
    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.