ChangeLog 3.5 KB

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