ChangeLog 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. 2009-07-09 Jb Evain <[email protected]>
  2. * HashSet.cs (ICollection<T>.Add): fix for bug #520760. Do not throw
  3. when adding duplicates.
  4. 2009-01-27 Jb Evain <[email protected]>
  5. * HashSet.cs: use Paolo's trick to return items in insertion order
  6. when possible.
  7. 2008-12-17 Jb Evain <[email protected]>
  8. * HashSet.cs (CopyTo): fix logic.
  9. 2008-09-12 Jb Evain <[email protected]>
  10. * HashSet.cs (.ctor (IEnumerable<T>,*)): only get the count of the
  11. enumerable if the source collection implements ICollection<T>, so that
  12. we only iterate once over the source collection.
  13. 2008-04-29 Jb Evain <[email protected]>
  14. * HashSet.cs: clear empty slots to allow the GC to collect
  15. their values.
  16. 2007-11-30 Jb Evain <[email protected]>
  17. * HashSet.cs: corcompare love.
  18. 2007-11-28 Jb Evain <[email protected]>
  19. * HashSet.cs: do the ArgumentNullException dance.
  20. 2007-11-28 Jb Evain <[email protected]>
  21. * HashSet.cs: start implementation of HashSet<T>, actually
  22. implemented as a reduction of Dictionary<K, V>. Contains
  23. basic set operations (that requires optimization though).
  24. 2007-08-12 Marek Safar <[email protected]>
  25. * Initial commit