ChangeLog 5.5 KB

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