ChangeLog 12 KB

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