ChangeLog 10 KB

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