ChangeLog 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. 2007-11-27 Scott Peterson <[email protected]>
  2. * InternalOrderedSequence.cs: updated Quicksort algorithm.
  3. 2007-11-22 Atsushi Enomoto <[email protected]>
  4. * Enumerable.cs : fixed Range(int,int) that iterated one less.
  5. Thanks to http://d.hatena.ne.jp/NyaRuRu/ .
  6. 2007-11-13 Jb Evain <[email protected]>
  7. * Enumerable.cs: make the new unit tests pass.
  8. 2007-11-09 Jb Evain <[email protected]>
  9. * Enumerable.cs: refactor the ArgumentNullException checks.
  10. 2007-11-08 Jb Evain <[email protected]>
  11. * Enumerable.cs: Implement SequenceEqual.
  12. 2007-11-08 Jb Evain <[email protected]>
  13. * Enumerable.cs: Complete Union.
  14. 2007-11-08 Jb Evain <[email protected]>
  15. * Enumerable.cs: correctly implement Intersect.
  16. 2007-11-08 Jb Evain <[email protected]>
  17. * Enumerable.cs: code cleanup.
  18. 2007-11-06 Jb Evain <[email protected]>
  19. * Enumerable.cs: Fix what we return on Except. Fix #324031.
  20. 2007-09-12 Marek Safar <[email protected]>
  21. * Enumerable.cs: Fixed GroupJoin logic. Reused DefaultIfEmpty
  22. implementation.
  23. 2007-09-11 Marek Safar <[email protected]>
  24. * Enumerable.cs: Fixed Join recursion.
  25. 2007-08-22 Marek Safar <[email protected]>
  26. * Enumerable.cs: More SelectionMany.
  27. 2007-08-21 Marek Safar <[email protected]>
  28. * AOrderedEnumerable: New abstract base.
  29. * Enumerable.cs, Queryable.cs: Public methods update.
  30. * InternalOrderedSequence.cs: Fixed ThenBy.
  31. 2007-08-21 Marek Safar <[email protected]>
  32. * Enumerable.cs, Queryable.cs: Public methods update.
  33. * InternalOrderedSequence.cs, OrderedSequence.cs: Derives from
  34. IOrderedEnumerable<TElement>.
  35. 2007-08-17 Michael Hutchinson <[email protected]>
  36. * Enumerable.cs: Fix Aggregate's counting code, and make it more
  37. efficient.
  38. 2007-06-08 Marek Safar <[email protected]>
  39. * Enumerable.cs: Fixed recursion in GroupBy.
  40. 2007-03-24 Antonello Provenzano <[email protected]>
  41. * Enumerable.cs: Migrated from QueryExpression
  42. - Implemented overload of method Aggregate
  43. - Method AsEnumerable implemented
  44. - Method Contains overloaded
  45. - 'Distinct' method refactored and overloaded
  46. - 'Except' method refactored and overloaded
  47. - Method IndexOf overloaded to be used with IEqualityComparer instances
  48. - Method Join overloaded to be used with IEqualityComparer instances
  49. - Method GroupJoin overloaded to be used with IEqualityComparer instances
  50. - Implemented internal method ToReadOnlyCollection for support
  51. to expressions.
  52. 2007-02-16 Marek Safar <[email protected]>
  53. * Enumerable.cs, Queryable.cs: Remove Extension attribute.
  54. 2007-02-03 Atsushi Enomoto <[email protected]>
  55. * IQueryable_T.cs : fixed type/member signatures (generic arguments).
  56. 2007-01-19 Marek Safar <[email protected]>
  57. * QueryExpression.cs,
  58. * Enumerable.cs: New files.
  59. * Small update to recent version.
  60. 2007-01-19 Marek Safar <[email protected]>
  61. * ChangeLog: Added