| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492 |
- 2010-07-14 Jb Evain <[email protected]>
- * Enumerable.cs (Union): fix HashSet.Contains call.
- 2010-07-13 Jb Evain <[email protected]>
- * Enumerable.cs (Except): fix HashSet.Contains call.
- Fixes #621911.
- 2010-06-22 Jb Evain <[email protected]>
- * Queryable.cs: properly set the constants types in the queryable
- expression tree.
- 2010-06-22 Jb Evain <[email protected]>
- * EnumerableQuery_T.cs
- * QueryableEnumerable.cs:
- override ToString.
- 2010-06-18 Rolf Bjarne Kvinge <[email protected]>
- * EnumerableQuery.cs:
- * EnumerableQuery_T.cs:
- * EnumerableExecutor.cs:
- * EnumerableExecutor_T.cs: Include in Moonlight.
- * Enumerable.cs: Moonlight too needs Zip.
- 2010-05-25 Jérémie Laval <[email protected]>
- * ParallelExecuter.cs: Fix NRE caused by lambda wrapping
- 2010-05-25 Jb Evain <[email protected]>
- * Enumerable.cs: make Reverse lazier. Based on a patch by
- Matthew Flaschen <[email protected]>. Fixes #608195.
- 2010-05-19 Jb Evain <[email protected]>
- * Enumerable.cs: fix GroupBy to deal with a null key for the last
- group entry. Also fix GroupBy to properly throw ArgumentNullException.
- 2010-05-05 Jérémie Laval <[email protected]>
- * ParallelEnumerable.cs: Some operators weren't declared
- as extension methods. Fixed.
- 2010-04-29 Jérémie Laval <[email protected]>
- * ParallelQueryEnumerator.cs: Use new non-blocking collection
- for storing indexed elements.
- 2010-04-29 Jérémie Laval <[email protected]>
- * ParallelExecuter.cs: Bring indexed worker methods support.
- Check for null callback.
- 2010-04-15 Jérémie Laval <[email protected]>
- * OrderedParallelQuery.cs:
- * ParallelEnumerable.cs:
- * ParallelExecuter.cs:
- * ParallelPartitioner.cs:
- * ParallelQuery.cs:
- * ParallelQueryEnumerator.cs: First check-in of PLinq
- 2010-04-15 Jérémie Laval <[email protected]>
- * ParallelExecutionMode.cs:
- * ParallelMergeOptions.cs: Initial check-in of PLinq (enum)
- 2010-04-12 Miguel de Icaza <[email protected]>
- * Enumerable.cs: Jumbo patch that inlines code, mainly for the AOT
- scenario where we our compiler cant infer the extra layer of
- indirection of a lambda function.
- But additionally, since we lack support for our JIT to inline
- intermediate delegate calls, it should save memory and run
- faster.
- 2010-04-07 Jb Evain <[email protected]>
- * EnumerableExecutor.cs: make ctor protected.
- 2010-04-07 Jb Evain <[email protected]>
- * EnumerableQuery_T.cs: implement.
- 2010-04-07 Jb Evain <[email protected]>
- * EnumerableQuery.cs: make ctor protected.
- 2010-04-06 Jb Evain <[email protected]>
- * QueryableEnumerable.cs: make TransformQueryable work on net_4_0.
- 2010-04-06 Jb Evain <[email protected]>
- * QueryableTransformer.cs: use factory method that work for all
- ET implementations.
- 2010-03-30 Jb Evain <[email protected]>
- * Queryable.cs: implement Zip for net_4_0.
- 2010-03-24 Jb Evain <[email protected]>
- * SortSequenceContext.cs: Fix OrderByDescending stability.
- Based on a patch by Richard Kiene <[email protected]>.
- 2010-02-23 Marek Safar <[email protected]>
- * Enumerable.cs: Implement Zip.
- 2010-01-25 Jb Evain <[email protected]>
- * QueryableTransformer.cs (ReplaceQueryableMethod): fix
- exception message.
- 2009-12-03 Marek Safar <[email protected]>
- * EnumerableExecutor.cs, EnumerableExecutor_T.cs, EnumerableQuery.cs
- EnumerableQuery_T.cs: Implemented.
- 2009-11-14 Jb Evain <[email protected]>
- * QueryableTransformer: adjust to latest ExpressionTransformer
- changes.
- 2009-11-12 Eric Maupin <[email protected]>
- * Enumerable.cs (ToLookup): Accept null keys.
- * Lookup.cs: Accept null keys.
- 2009-10-08 Marek Safar <[email protected]>
- * Enumerable.cs (Empty): Optimized allocation.
- 2009-08-07 Marek Safar <[email protected]>
- * Enumerable.cs (Skip): Optimized and fixed int.MaxValue overflow.
- 2009-07-20 Jb Evain <[email protected]>
- * Lookup.cs: avoid a double dictionary lookup on the indexer.
- 2009-07-19 Gonzalo Paniagua Javier <[email protected]>
- * Lookup.cs: when there are no matching elements, return an empty
- enumerable. Fixes bug #523386.
- 2009-05-18 Jb Evain <[email protected]>
- * Enumerable.cs (Max, Min): fix generic versions.
- 2009-04-03 Jb Evain <[email protected]>
- * Enumerable.cs (Cast): fix for when casted enumerator is already
- of the appropriate type.
- 2009-03-28 Jb Evain <[email protected]>
- * Enumerable.cs: fix Intersect.
- 2009-02-23 Marek Safar <[email protected]>
- * Enumerable.cs (IterateNullable): Compare unwrapped values.
- 2009-02-23 Jb Evain <[email protected]>
- * Enumerable.cs (IterateNullable): fix initial value
- for nullables.
- 2009-01-22 Jb Evain <[email protected]>
- * SortSequenceContext.cs: make sort stable.
- 2009-01-22 Jb Evain <[email protected]>
- * Enumerable.cs (Sum): check the sum operations for possible overfows.
- 2009-01-22 Jb Evain <[email protected]>
- * Enumerable.cs (SequenceEqual): make sure we dispose enumerators.
- 2009-01-22 Jb Evain <[email protected]>
- * Enumerable.cs: optimize Last for lists.
- 2009-01-15 Jb Evain <[email protected]>
- * Lookup.cs: propage the appropriate comparer for the lookup.
- 2008-11-20 Jb Evain <[email protected]>
- * Enumerable.cs (Any): optimize if we're operating on an ICollection.
- 2008-09-30 Jb Evain <[email protected]>
- * QueryableEnumerable.cs: fix ElementType.
- 2008-09-28 Sebastien Pouliot <[email protected]>
- * Enumerable.cs: Add missing cast Average on IEnumerable<long?> to
- ensure the result is not truncated.
- [Found using Gendarme's ReviewCastOnIntegerDivisionRule]
- 2008-09-11 Jb Evain <[email protected]>
- * Enumerable.cs (Iterate*): use a bool empty instead of an int counter.
- Fixes #425344.
- 2007-08-14 Marek Safar <[email protected]>
- * Enumerable.cs (Cast): Simplified.
- 2008-08-08 Jb Evain <[email protected]>
- * Enumerable.cs (Take): fix not too consume an uneeded item from
- the source enumerable. Fix #415644.
- 2008-07-24 Marek Safar <[email protected]>
- * Enumerable.cs (First): Optimized.
- 2008-05-27 Jb Evain <[email protected]>
- * Enumerable.cs (Sum): don't throw if source is empty.
- Fixes #394827.
- 2008-05-20 Roei Erez <[email protected]>
- * Lookup.cs: Implement ApplyResultSelector method
- 2008-05-20 Roei Erez <[email protected]>
- * Queryable.cs: Implement the non-generic AsQureyable method.
- 2008-05-20 Marek Safar <[email protected]>
- * Enumerable.cs: Removed GroupBy MonoTODO.
- 2008-05-19 Roei Erez <[email protected]>
- * Enumerable.cs: Implemente two overloaded GroupBy methods.
- 2008-05-15 Jb Evain <[email protected]>
- * QueryableEnumerable.cs: Make that the first expression is a constant
- of itself, and not a constant of the source enumerable.
- * QueryableTransformer.cs: On a constant, transform a QueryableEnumerable
- into the enumerable.
- * Queryable.cs: use new constructor.
- 2008-05-15 Jb Evain <[email protected]>
- * QueryableTransformer.cs, QueryableEnumerable.cs: coding style plus
- some good refactorings.
- 2008-05-15 Roei Erez <[email protected]>
- * QueryableTransformer.cs: missed in the last commit.
- 2008-05-15 Roei Erez <[email protected]>
- * QueryableTransformer.cs, QueryableEnumerable.cs: two classes added for implementation
- of Queryable.AsQueryable() implementation.
- * Queryable.cs: Implement AsQueryable() method.
- 2008-05-08 Jonathan Pryor <[email protected]>
- * Enumerable.cs: LongCount() can be optimized for arrays, and Reverse() can
- be implemented in terms of IList w/o needing a temporary List<T> copy.
- 2008-05-06 Sasha Kogan <[email protected]>
- * Queryable.cs (Average, GroupBy, Union): fix signatures to
- match MS API.
- 2008-05-03 Jb Evain <[email protected]>
- * Queryable.cs (OrderBy, OrderByDescending): fix signature and
- properly return a IOrderedQueryable<>.
- 2008-05-02 Jb Evain <[email protected]>
- * SortSequenceContext.cs (Compare): fix key equality case
- when there's a nested sort.
- 2008-05-01 Jb Evain <[email protected]>
- * SortDirection.cs, SortContext.cs, SortSequenceContext.cs:
- new infrastructure files for nested orderby/thenby calls.
- * QuickSort.cs: refactored out of OrderedSequence.cs
- * OrderedEnumerable.cs, OrderedSequence.cs: refactoring
- to use the new SortContext infrastructure.
- 2008-04-30 Jb Evain <[email protected]>
- * Enumerable.cs: Average (int|long): properly compute
- average.
- 2008-04-22 Jb Evain <[email protected]>
- * Enumerable.cs (ToReadOnlyCollection): optimization, use
- a generic singleton for empty read only collections.
- 2008-03-31 Marek Safar <[email protected]>
- * Enumerable.cs: Use Math.Min and Math.Max where appropriate.
- 2008-03-27 Leonid Freydovich <[email protected]>
- * LambdaExpression.cs Add some TARGET_JVM specific code
- 2008-02-09 Miguel de Icaza <[email protected]>
- * Enumerable.cs (ToDictionary): Implement this overload.
- 2008-02-01 Jb Evain <[email protected]>
- * Queryable.cs, Check.cs: integrate GHOP work from
- Andreas Noever <[email protected]>.
- 2008-01-21 Jb Evain <[email protected]>
- * Enumerable.cs: fix Intersect.
- 2008-01-21 Jb Evain <[email protected]>
- * Enumerable.cs: fix Concat et SelectMany.
- 2008-01-21 Jb Evain <[email protected]>
- * Enumerable.cs: fix range.
- 2008-01-21 Jb Evain <[email protected]>
- * Enumerable.cs: more ArgumentNullExceptions.
- 2008-01-21 Jb Evain <[email protected]>
- * Enumerable.cs: fix some more ArgumentNullException.
- 2008-01-21 Jb Evain <[email protected]>
- * Enumerable.cs: correctly throw ArgumentNullException
- for Cast.
- 2008-01-21 Jb Evain <[email protected]>
- * Enumerable.cs (Iterate): protect against null selectors.
- 2008-01-21 Jb Evain <[email protected]>
- * Enumerable.cs: fix IterateNullable.
- 2008-01-15 Jb Evain <[email protected]>
- * Enumerable.cs: clean the ToReadOnlyCollection extension
- method.
- 2007-12-18 Jb Evain <[email protected]>
- * Enumerable.cs: refactor some Min.
- 2007-12-18 Jb Evain <[email protected]>
- * Enumerable.cs: refactor some more Max.
- 2007-12-12 Jb Evain <[email protected]>
- * Check.cs, Enumerable.cs: extract the checks to their
- own class, as they'll be used by Queryable as well.
- 2007-12-04 Marek Safar <[email protected]>
- * Enumerable.cs: Refactor some copy&paste blocks.
- 2007-11-28 Jb Evain <[email protected]>
- * Enumerable.cs: fix warnings.
- 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
|