Changeset 10366 for trunk/sources/HeuristicLab.Collections
- Timestamp:
- 01/22/14 13:46:30 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Collections/3.3/BidirectionalDictionary.cs
r9456 r10366 67 67 } 68 68 69 public IEnumerable<TFirst> First Values {69 public IEnumerable<TFirst> FirstKeys { 70 70 get { return firstToSecond.Keys; } 71 71 } 72 72 73 public IEnumerable<TSecond> Second Values {73 public IEnumerable<TSecond> SecondKeys { 74 74 get { return secondToFirst.Keys; } 75 75 }
Note: See TracChangeset
for help on using the changeset viewer.