ChangeLog 7.0 KB

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