ChangeLog 2.0 KB

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