ChangeLog 7.8 KB

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