ChangeLog 901 B

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