| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- 2007-11-27 Scott Peterson <[email protected]>
- * InternalOrderedSequence.cs: updated Quicksort algorithm.
- 2007-11-22 Atsushi Enomoto <[email protected]>
- * Enumerable.cs : fixed Range(int,int) that iterated one less.
- Thanks to http://d.hatena.ne.jp/NyaRuRu/ .
- 2007-11-13 Jb Evain <[email protected]>
- * Enumerable.cs: make the new unit tests pass.
- 2007-11-09 Jb Evain <[email protected]>
- * Enumerable.cs: refactor the ArgumentNullException checks.
- 2007-11-08 Jb Evain <[email protected]>
- * Enumerable.cs: Implement SequenceEqual.
- 2007-11-08 Jb Evain <[email protected]>
- * Enumerable.cs: Complete Union.
- 2007-11-08 Jb Evain <[email protected]>
- * Enumerable.cs: correctly implement Intersect.
- 2007-11-08 Jb Evain <[email protected]>
- * Enumerable.cs: code cleanup.
- 2007-11-06 Jb Evain <[email protected]>
- * Enumerable.cs: Fix what we return on Except. Fix #324031.
- 2007-09-12 Marek Safar <[email protected]>
- * Enumerable.cs: Fixed GroupJoin logic. Reused DefaultIfEmpty
- implementation.
-
- 2007-09-11 Marek Safar <[email protected]>
- * Enumerable.cs: Fixed Join recursion.
- 2007-08-22 Marek Safar <[email protected]>
- * Enumerable.cs: More SelectionMany.
- 2007-08-21 Marek Safar <[email protected]>
- * AOrderedEnumerable: New abstract base.
-
- * Enumerable.cs, Queryable.cs: Public methods update.
-
- * InternalOrderedSequence.cs: Fixed ThenBy.
- 2007-08-21 Marek Safar <[email protected]>
- * Enumerable.cs, Queryable.cs: Public methods update.
-
- * InternalOrderedSequence.cs, OrderedSequence.cs: Derives from
- IOrderedEnumerable<TElement>.
-
- 2007-08-17 Michael Hutchinson <[email protected]>
- * Enumerable.cs: Fix Aggregate's counting code, and make it more
- efficient.
- 2007-06-08 Marek Safar <[email protected]>
- * Enumerable.cs: Fixed recursion in GroupBy.
- 2007-03-24 Antonello Provenzano <[email protected]>
- * Enumerable.cs: Migrated from QueryExpression
- - Implemented overload of method Aggregate
- - Method AsEnumerable implemented
- - Method Contains overloaded
- - 'Distinct' method refactored and overloaded
- - 'Except' method refactored and overloaded
- - Method IndexOf overloaded to be used with IEqualityComparer instances
- - Method Join overloaded to be used with IEqualityComparer instances
- - Method GroupJoin overloaded to be used with IEqualityComparer instances
- - Implemented internal method ToReadOnlyCollection for support
- to expressions.
-
- 2007-02-16 Marek Safar <[email protected]>
- * Enumerable.cs, Queryable.cs: Remove Extension attribute.
- 2007-02-03 Atsushi Enomoto <[email protected]>
- * IQueryable_T.cs : fixed type/member signatures (generic arguments).
- 2007-01-19 Marek Safar <[email protected]>
- * QueryExpression.cs,
- * Enumerable.cs: New files.
- * Small update to recent version.
- 2007-01-19 Marek Safar <[email protected]>
- * ChangeLog: Added
-
|