ChangeLog 5.8 KB

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