ChangeLog 1.0 KB

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