ChangeLog 1.9 KB

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