ChangeLog 8.9 KB

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