ChangeLog 821 B

12345678910111213141516171819202122232425262728
  1. 2008-09-12 Jb Evain <[email protected]>
  2. * HashSet.cs (.ctor (IEnumerable<T>,*)): only get the count of the
  3. enumerable if the source collection implements ICollection<T>, so that
  4. we only iterate once over the source collection.
  5. 2008-04-29 Jb Evain <[email protected]>
  6. * HashSet.cs: clear empty slots to allow the GC to collect
  7. their values.
  8. 2007-11-30 Jb Evain <[email protected]>
  9. * HashSet.cs: corcompare love.
  10. 2007-11-28 Jb Evain <[email protected]>
  11. * HashSet.cs: do the ArgumentNullException dance.
  12. 2007-11-28 Jb Evain <[email protected]>
  13. * HashSet.cs: start implementation of HashSet<T>, actually
  14. implemented as a reduction of Dictionary<K, V>. Contains
  15. basic set operations (that requires optimization though).
  16. 2007-08-12 Marek Safar <[email protected]>
  17. * Initial commit