ChangeLog 11 KB

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