ChangeLog 6.1 KB

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