ChangeLog 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236
  1. 2008-05-15 Jb Evain <[email protected]>
  2. * QueryableTransformer.cs, QueryableEnumerable.cs: coding style plus
  3. some good refactorings.
  4. 2008-05-15 Roei Erez <[email protected]>
  5. * QueryableTransformer.cs: missed in the last commit.
  6. 2008-05-15 Roei Erez <[email protected]>
  7. * QueryableTransformer.cs, QueryableEnumerable.cs: two classes added for implementation
  8. of Queryable.AsQueryable() implementation.
  9. * Queryable.cs: Implement AsQueryable() method.
  10. 2008-05-08 Jonathan Pryor <[email protected]>
  11. * Enumerable.cs: LongCount() can be optimized for arrays, and Reverse() can
  12. be implemented in terms of IList w/o needing a temporary List<T> copy.
  13. 2008-05-06 Sasha Kogan <[email protected]>
  14. * Queryable.cs (Average, GroupBy, Union): fix signatures to
  15. match MS API.
  16. 2008-05-03 Jb Evain <[email protected]>
  17. * Queryable.cs (OrderBy, OrderByDescending): fix signature and
  18. properly return a IOrderedQueryable<>.
  19. 2008-05-02 Jb Evain <[email protected]>
  20. * SortSequenceContext.cs (Compare): fix key equality case
  21. when there's a nested sort.
  22. 2008-05-01 Jb Evain <[email protected]>
  23. * SortDirection.cs, SortContext.cs, SortSequenceContext.cs:
  24. new infrastructure files for nested orderby/thenby calls.
  25. * QuickSort.cs: refactored out of OrderedSequence.cs
  26. * OrderedEnumerable.cs, OrderedSequence.cs: refactoring
  27. to use the new SortContext infrastructure.
  28. 2008-04-30 Jb Evain <[email protected]>
  29. * Enumerable.cs: Average (int|long): properly compute
  30. average.
  31. 2008-04-22 Jb Evain <[email protected]>
  32. * Enumerable.cs (ToReadOnlyCollection): optimization, use
  33. a generic singleton for empty read only collections.
  34. 2008-03-31 Marek Safar <[email protected]>
  35. * Enumerable.cs: Use Math.Min and Math.Max where appropriate.
  36. 2008-03-27 Leonid Freydovich <[email protected]>
  37. * LambdaExpression.cs Add some TARGET_JVM specific code
  38. 2008-02-09 Miguel de Icaza <[email protected]>
  39. * Enumerable.cs (ToDictionary): Implement this overload.
  40. 2008-02-01 Jb Evain <[email protected]>
  41. * Queryable.cs, Check.cs: integrate GHOP work from
  42. Andreas Noever <[email protected]>.
  43. 2008-01-21 Jb Evain <[email protected]>
  44. * Enumerable.cs: fix Intersect.
  45. 2008-01-21 Jb Evain <[email protected]>
  46. * Enumerable.cs: fix Concat et SelectMany.
  47. 2008-01-21 Jb Evain <[email protected]>
  48. * Enumerable.cs: fix range.
  49. 2008-01-21 Jb Evain <[email protected]>
  50. * Enumerable.cs: more ArgumentNullExceptions.
  51. 2008-01-21 Jb Evain <[email protected]>
  52. * Enumerable.cs: fix some more ArgumentNullException.
  53. 2008-01-21 Jb Evain <[email protected]>
  54. * Enumerable.cs: correctly throw ArgumentNullException
  55. for Cast.
  56. 2008-01-21 Jb Evain <[email protected]>
  57. * Enumerable.cs (Iterate): protect against null selectors.
  58. 2008-01-21 Jb Evain <[email protected]>
  59. * Enumerable.cs: fix IterateNullable.
  60. 2008-01-15 Jb Evain <[email protected]>
  61. * Enumerable.cs: clean the ToReadOnlyCollection extension
  62. method.
  63. 2007-12-18 Jb Evain <[email protected]>
  64. * Enumerable.cs: refactor some Min.
  65. 2007-12-18 Jb Evain <[email protected]>
  66. * Enumerable.cs: refactor some more Max.
  67. 2007-12-12 Jb Evain <[email protected]>
  68. * Check.cs, Enumerable.cs: extract the checks to their
  69. own class, as they'll be used by Queryable as well.
  70. 2007-12-04 Marek Safar <[email protected]>
  71. * Enumerable.cs: Refactor some copy&paste blocks.
  72. 2007-11-28 Jb Evain <[email protected]>
  73. * Enumerable.cs: fix warnings.
  74. 2007-11-27 Scott Peterson <[email protected]>
  75. * InternalOrderedSequence.cs: updated Quicksort algorithm.
  76. 2007-11-22 Atsushi Enomoto <[email protected]>
  77. * Enumerable.cs : fixed Range(int,int) that iterated one less.
  78. Thanks to http://d.hatena.ne.jp/NyaRuRu/ .
  79. 2007-11-13 Jb Evain <[email protected]>
  80. * Enumerable.cs: make the new unit tests pass.
  81. 2007-11-09 Jb Evain <[email protected]>
  82. * Enumerable.cs: refactor the ArgumentNullException checks.
  83. 2007-11-08 Jb Evain <[email protected]>
  84. * Enumerable.cs: Implement SequenceEqual.
  85. 2007-11-08 Jb Evain <[email protected]>
  86. * Enumerable.cs: Complete Union.
  87. 2007-11-08 Jb Evain <[email protected]>
  88. * Enumerable.cs: correctly implement Intersect.
  89. 2007-11-08 Jb Evain <[email protected]>
  90. * Enumerable.cs: code cleanup.
  91. 2007-11-06 Jb Evain <[email protected]>
  92. * Enumerable.cs: Fix what we return on Except. Fix #324031.
  93. 2007-09-12 Marek Safar <[email protected]>
  94. * Enumerable.cs: Fixed GroupJoin logic. Reused DefaultIfEmpty
  95. implementation.
  96. 2007-09-11 Marek Safar <[email protected]>
  97. * Enumerable.cs: Fixed Join recursion.
  98. 2007-08-22 Marek Safar <[email protected]>
  99. * Enumerable.cs: More SelectionMany.
  100. 2007-08-21 Marek Safar <[email protected]>
  101. * AOrderedEnumerable: New abstract base.
  102. * Enumerable.cs, Queryable.cs: Public methods update.
  103. * InternalOrderedSequence.cs: Fixed ThenBy.
  104. 2007-08-21 Marek Safar <[email protected]>
  105. * Enumerable.cs, Queryable.cs: Public methods update.
  106. * InternalOrderedSequence.cs, OrderedSequence.cs: Derives from
  107. IOrderedEnumerable<TElement>.
  108. 2007-08-17 Michael Hutchinson <[email protected]>
  109. * Enumerable.cs: Fix Aggregate's counting code, and make it more
  110. efficient.
  111. 2007-06-08 Marek Safar <[email protected]>
  112. * Enumerable.cs: Fixed recursion in GroupBy.
  113. 2007-03-24 Antonello Provenzano <[email protected]>
  114. * Enumerable.cs: Migrated from QueryExpression
  115. - Implemented overload of method Aggregate
  116. - Method AsEnumerable implemented
  117. - Method Contains overloaded
  118. - 'Distinct' method refactored and overloaded
  119. - 'Except' method refactored and overloaded
  120. - Method IndexOf overloaded to be used with IEqualityComparer instances
  121. - Method Join overloaded to be used with IEqualityComparer instances
  122. - Method GroupJoin overloaded to be used with IEqualityComparer instances
  123. - Implemented internal method ToReadOnlyCollection for support
  124. to expressions.
  125. 2007-02-16 Marek Safar <[email protected]>
  126. * Enumerable.cs, Queryable.cs: Remove Extension attribute.
  127. 2007-02-03 Atsushi Enomoto <[email protected]>
  128. * IQueryable_T.cs : fixed type/member signatures (generic arguments).
  129. 2007-01-19 Marek Safar <[email protected]>
  130. * QueryExpression.cs,
  131. * Enumerable.cs: New files.
  132. * Small update to recent version.
  133. 2007-01-19 Marek Safar <[email protected]>
  134. * ChangeLog: Added