ChangeLog 4.3 KB

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