ChangeLog 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. 2009-07-30 Raja R Harinath <[email protected]>
  2. * HashSet.cs (Enumerator.CheckCurrent): Inline into ...
  3. (Enumerator.IEnumerator.Current): ... this.
  4. (Enumerator.IEnumerator.Reset): Check invariants.
  5. 2009-07-30 Raja R Harinath <[email protected]>
  6. * HashSet.cs (Enumerator.next): Rename from Enumerator.current and
  7. change meaning to be the index of the slot to start searching on
  8. the next iteration.
  9. (Enumerator.current): New. Contains the current element.
  10. (Enumerator.MoveNext): Update. Avoid an out-of-bounds access.
  11. (Enumerator.Current): Don't check any invariants.
  12. 2009-07-09 Jb Evain <[email protected]>
  13. * HashSet.cs (ICollection<T>.Add): fix for bug #520760. Do not throw
  14. when adding duplicates.
  15. 2009-01-27 Jb Evain <[email protected]>
  16. * HashSet.cs: use Paolo's trick to return items in insertion order
  17. when possible.
  18. 2008-12-17 Jb Evain <[email protected]>
  19. * HashSet.cs (CopyTo): fix logic.
  20. 2008-09-12 Jb Evain <[email protected]>
  21. * HashSet.cs (.ctor (IEnumerable<T>,*)): only get the count of the
  22. enumerable if the source collection implements ICollection<T>, so that
  23. we only iterate once over the source collection.
  24. 2008-04-29 Jb Evain <[email protected]>
  25. * HashSet.cs: clear empty slots to allow the GC to collect
  26. their values.
  27. 2007-11-30 Jb Evain <[email protected]>
  28. * HashSet.cs: corcompare love.
  29. 2007-11-28 Jb Evain <[email protected]>
  30. * HashSet.cs: do the ArgumentNullException dance.
  31. 2007-11-28 Jb Evain <[email protected]>
  32. * HashSet.cs: start implementation of HashSet<T>, actually
  33. implemented as a reduction of Dictionary<K, V>. Contains
  34. basic set operations (that requires optimization though).
  35. 2007-08-12 Marek Safar <[email protected]>
  36. * Initial commit