ChangeLog 1.8 KB

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