ChangeLog 4.2 KB

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