ChangeLog 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. 2007-11-22 Atsushi Enomoto <[email protected]>
  2. * Enumerable.cs : fixed Range(int,int) that iterated one less.
  3. Thanks to http://d.hatena.ne.jp/NyaRuRu/ .
  4. 2007-11-13 Jb Evain <[email protected]>
  5. * Enumerable.cs: make the new unit tests pass.
  6. 2007-11-09 Jb Evain <[email protected]>
  7. * Enumerable.cs: refactor the ArgumentNullException checks.
  8. 2007-11-08 Jb Evain <[email protected]>
  9. * Enumerable.cs: Implement SequenceEqual.
  10. 2007-11-08 Jb Evain <[email protected]>
  11. * Enumerable.cs: Complete Union.
  12. 2007-11-08 Jb Evain <[email protected]>
  13. * Enumerable.cs: correctly implement Intersect.
  14. 2007-11-08 Jb Evain <[email protected]>
  15. * Enumerable.cs: code cleanup.
  16. 2007-11-06 Jb Evain <[email protected]>
  17. * Enumerable.cs: Fix what we return on Except. Fix #324031.
  18. 2007-09-12 Marek Safar <[email protected]>
  19. * Enumerable.cs: Fixed GroupJoin logic. Reused DefaultIfEmpty
  20. implementation.
  21. 2007-09-11 Marek Safar <[email protected]>
  22. * Enumerable.cs: Fixed Join recursion.
  23. 2007-08-22 Marek Safar <[email protected]>
  24. * Enumerable.cs: More SelectionMany.
  25. 2007-08-21 Marek Safar <[email protected]>
  26. * AOrderedEnumerable: New abstract base.
  27. * Enumerable.cs, Queryable.cs: Public methods update.
  28. * InternalOrderedSequence.cs: Fixed ThenBy.
  29. 2007-08-21 Marek Safar <[email protected]>
  30. * Enumerable.cs, Queryable.cs: Public methods update.
  31. * InternalOrderedSequence.cs, OrderedSequence.cs: Derives from
  32. IOrderedEnumerable<TElement>.
  33. 2007-08-17 Michael Hutchinson <[email protected]>
  34. * Enumerable.cs: Fix Aggregate's counting code, and make it more
  35. efficient.
  36. 2007-06-08 Marek Safar <[email protected]>
  37. * Enumerable.cs: Fixed recursion in GroupBy.
  38. 2007-03-24 Antonello Provenzano <[email protected]>
  39. * Enumerable.cs: Migrated from QueryExpression
  40. - Implemented overload of method Aggregate
  41. - Method AsEnumerable implemented
  42. - Method Contains overloaded
  43. - 'Distinct' method refactored and overloaded
  44. - 'Except' method refactored and overloaded
  45. - Method IndexOf overloaded to be used with IEqualityComparer instances
  46. - Method Join overloaded to be used with IEqualityComparer instances
  47. - Method GroupJoin overloaded to be used with IEqualityComparer instances
  48. - Implemented internal method ToReadOnlyCollection for support
  49. to expressions.
  50. 2007-02-16 Marek Safar <[email protected]>
  51. * Enumerable.cs, Queryable.cs: Remove Extension attribute.
  52. 2007-02-03 Atsushi Enomoto <[email protected]>
  53. * IQueryable_T.cs : fixed type/member signatures (generic arguments).
  54. 2007-01-19 Marek Safar <[email protected]>
  55. * QueryExpression.cs,
  56. * Enumerable.cs: New files.
  57. * Small update to recent version.
  58. 2007-01-19 Marek Safar <[email protected]>
  59. * ChangeLog: Added