Bart De Smet 568e78fee4 Implement Average overloads with selector. 7 yıl önce
..
Aggregate.cs 8be4811163 Moving to Async naming convention. 7 yıl önce
All.cs 8be4811163 Moving to Async naming convention. 7 yıl önce
Any.cs 8be4811163 Moving to Async naming convention. 7 yıl önce
AppendPrepend.cs 8be4811163 Moving to Async naming convention. 7 yıl önce
AsAsyncEnumerable.cs 6a3dfda574 Move Create and AsAsyncEnumerable. 7 yıl önce
Average.Generated.cs 568e78fee4 Implement Average overloads with selector. 7 yıl önce
Average.Generated.tt 568e78fee4 Implement Average overloads with selector. 7 yıl önce
Average.cs 568e78fee4 Implement Average overloads with selector. 7 yıl önce
Cast.cs 3a3c59ba42 Change signature of Clone. 7 yıl önce
Concat.cs 8be4811163 Moving to Async naming convention. 7 yıl önce
Contains.cs 8be4811163 Moving to Async naming convention. 7 yıl önce
Count.cs 8be4811163 Moving to Async naming convention. 7 yıl önce
DefaultIfEmpty.cs 8be4811163 Moving to Async naming convention. 7 yıl önce
Distinct.cs 3a3c59ba42 Change signature of Clone. 7 yıl önce
ElementAt.cs 8be4811163 Moving to Async naming convention. 7 yıl önce
ElementAtOrDefault.cs 8be4811163 Moving to Async naming convention. 7 yıl önce
Empty.cs af6a43d236 Use ValueTask for internal IAsyncPartition interface. 7 yıl önce
Except.cs 3a3c59ba42 Change signature of Clone. 7 yıl önce
First.cs 8be4811163 Moving to Async naming convention. 7 yıl önce
FirstOrDefault.cs af6a43d236 Use ValueTask for internal IAsyncPartition interface. 7 yıl önce
ForEach.cs c52d01bcc2 Stylistic nit. 7 yıl önce
GroupBy.cs aacb761f40 Switch to ValueTask for predicates, selectors, etc. We await those ourselves and they are expected to be called in a high-frequency manner, so this seems to be the right choice. The only drawback is when these operators are used using method group conversion of a Task-returning async method, which is likely rare in query expressions where one typically uses (async) lambdas, and there's a workaround Task-to-ValueTask conversion. We can't overload on ValueTask and Task return types, so this seems the best way forward. 7 yıl önce
GroupJoin.cs aacb761f40 Switch to ValueTask for predicates, selectors, etc. We await those ourselves and they are expected to be called in a high-frequency manner, so this seems to be the right choice. The only drawback is when these operators are used using method group conversion of a Task-returning async method, which is likely rare in query expressions where one typically uses (async) lambdas, and there's a workaround Task-to-ValueTask conversion. We can't overload on ValueTask and Task return types, so this seems the best way forward. 7 yıl önce
Grouping.cs 67cb696b45 Clean up Grouping. 7 yıl önce
Intersect.cs 3a3c59ba42 Change signature of Clone. 7 yıl önce
Join.cs aacb761f40 Switch to ValueTask for predicates, selectors, etc. We await those ourselves and they are expected to be called in a high-frequency manner, so this seems to be the right choice. The only drawback is when these operators are used using method group conversion of a Task-returning async method, which is likely rare in query expressions where one typically uses (async) lambdas, and there's a workaround Task-to-ValueTask conversion. We can't overload on ValueTask and Task return types, so this seems the best way forward. 7 yıl önce
Last.cs 8be4811163 Moving to Async naming convention. 7 yıl önce
LastOrDefault.cs af6a43d236 Use ValueTask for internal IAsyncPartition interface. 7 yıl önce
LongCount.cs 8be4811163 Moving to Async naming convention. 7 yıl önce
Lookup.cs aacb761f40 Switch to ValueTask for predicates, selectors, etc. We await those ourselves and they are expected to be called in a high-frequency manner, so this seems to be the right choice. The only drawback is when these operators are used using method group conversion of a Task-returning async method, which is likely rare in query expressions where one typically uses (async) lambdas, and there's a workaround Task-to-ValueTask conversion. We can't overload on ValueTask and Task return types, so this seems the best way forward. 7 yıl önce
Max.Generic.cs aacb761f40 Switch to ValueTask for predicates, selectors, etc. We await those ourselves and they are expected to be called in a high-frequency manner, so this seems to be the right choice. The only drawback is when these operators are used using method group conversion of a Task-returning async method, which is likely rare in query expressions where one typically uses (async) lambdas, and there's a workaround Task-to-ValueTask conversion. We can't overload on ValueTask and Task return types, so this seems the best way forward. 7 yıl önce
Max.Primitive.cs aacb761f40 Switch to ValueTask for predicates, selectors, etc. We await those ourselves and they are expected to be called in a high-frequency manner, so this seems to be the right choice. The only drawback is when these operators are used using method group conversion of a Task-returning async method, which is likely rare in query expressions where one typically uses (async) lambdas, and there's a workaround Task-to-ValueTask conversion. We can't overload on ValueTask and Task return types, so this seems the best way forward. 7 yıl önce
Max.cs 8be4811163 Moving to Async naming convention. 7 yıl önce
Min.Generic.cs aacb761f40 Switch to ValueTask for predicates, selectors, etc. We await those ourselves and they are expected to be called in a high-frequency manner, so this seems to be the right choice. The only drawback is when these operators are used using method group conversion of a Task-returning async method, which is likely rare in query expressions where one typically uses (async) lambdas, and there's a workaround Task-to-ValueTask conversion. We can't overload on ValueTask and Task return types, so this seems the best way forward. 7 yıl önce
Min.Primitive.cs aacb761f40 Switch to ValueTask for predicates, selectors, etc. We await those ourselves and they are expected to be called in a high-frequency manner, so this seems to be the right choice. The only drawback is when these operators are used using method group conversion of a Task-returning async method, which is likely rare in query expressions where one typically uses (async) lambdas, and there's a workaround Task-to-ValueTask conversion. We can't overload on ValueTask and Task return types, so this seems the best way forward. 7 yıl önce
Min.cs 8be4811163 Moving to Async naming convention. 7 yıl önce
MinMax.Generated.cs 8be4811163 Moving to Async naming convention. 7 yıl önce
MinMax.Generated.tt 8be4811163 Moving to Async naming convention. 7 yıl önce
OfType.cs 3a3c59ba42 Change signature of Clone. 7 yıl önce
OrderBy.cs aacb761f40 Switch to ValueTask for predicates, selectors, etc. We await those ourselves and they are expected to be called in a high-frequency manner, so this seems to be the right choice. The only drawback is when these operators are used using method group conversion of a Task-returning async method, which is likely rare in query expressions where one typically uses (async) lambdas, and there's a workaround Task-to-ValueTask conversion. We can't overload on ValueTask and Task return types, so this seems the best way forward. 7 yıl önce
OrderedAsyncEnumerable.cs 8be4811163 Moving to Async naming convention. 7 yıl önce
Range.cs af6a43d236 Use ValueTask for internal IAsyncPartition interface. 7 yıl önce
Repeat.cs 3a3c59ba42 Change signature of Clone. 7 yıl önce
Reverse.cs 8be4811163 Moving to Async naming convention. 7 yıl önce
Select.cs aacb761f40 Switch to ValueTask for predicates, selectors, etc. We await those ourselves and they are expected to be called in a high-frequency manner, so this seems to be the right choice. The only drawback is when these operators are used using method group conversion of a Task-returning async method, which is likely rare in query expressions where one typically uses (async) lambdas, and there's a workaround Task-to-ValueTask conversion. We can't overload on ValueTask and Task return types, so this seems the best way forward. 7 yıl önce
SelectMany.cs aacb761f40 Switch to ValueTask for predicates, selectors, etc. We await those ourselves and they are expected to be called in a high-frequency manner, so this seems to be the right choice. The only drawback is when these operators are used using method group conversion of a Task-returning async method, which is likely rare in query expressions where one typically uses (async) lambdas, and there's a workaround Task-to-ValueTask conversion. We can't overload on ValueTask and Task return types, so this seems the best way forward. 7 yıl önce
SequenceEqual.cs 8be4811163 Moving to Async naming convention. 7 yıl önce
Single.cs 8be4811163 Moving to Async naming convention. 7 yıl önce
SingleLinkedNode.cs b53998f1d6 More code cleanup. 7 yıl önce
SingleOrDefault.cs 8be4811163 Moving to Async naming convention. 7 yıl önce
Skip.cs 3a3c59ba42 Change signature of Clone. 7 yıl önce
SkipLast.cs 3a3c59ba42 Change signature of Clone. 7 yıl önce
SkipWhile.cs aacb761f40 Switch to ValueTask for predicates, selectors, etc. We await those ourselves and they are expected to be called in a high-frequency manner, so this seems to be the right choice. The only drawback is when these operators are used using method group conversion of a Task-returning async method, which is likely rare in query expressions where one typically uses (async) lambdas, and there's a workaround Task-to-ValueTask conversion. We can't overload on ValueTask and Task return types, so this seems the best way forward. 7 yıl önce
Sum.Generated.cs 8be4811163 Moving to Async naming convention. 7 yıl önce
Sum.Generated.tt 8be4811163 Moving to Async naming convention. 7 yıl önce
Take.cs cfd11d1c62 Adding BCL style exception factories. 7 yıl önce
TakeLast.cs 3a3c59ba42 Change signature of Clone. 7 yıl önce
TakeWhile.cs aacb761f40 Switch to ValueTask for predicates, selectors, etc. We await those ourselves and they are expected to be called in a high-frequency manner, so this seems to be the right choice. The only drawback is when these operators are used using method group conversion of a Task-returning async method, which is likely rare in query expressions where one typically uses (async) lambdas, and there's a workaround Task-to-ValueTask conversion. We can't overload on ValueTask and Task return types, so this seems the best way forward. 7 yıl önce
ToArray.cs 8be4811163 Moving to Async naming convention. 7 yıl önce
ToAsyncEnumerable.cs 3a3c59ba42 Change signature of Clone. 7 yıl önce
ToDictionary.cs 8be4811163 Moving to Async naming convention. 7 yıl önce
ToEnumerable.cs 92515218cc Fix ToEnumerable's use of ValueTask. 7 yıl önce
ToHashSet.cs 8be4811163 Moving to Async naming convention. 7 yıl önce
ToList.cs 8be4811163 Moving to Async naming convention. 7 yıl önce
ToLookup.cs 8be4811163 Moving to Async naming convention. 7 yıl önce
ToObservable.cs cfd11d1c62 Adding BCL style exception factories. 7 yıl önce
Union.cs 3a3c59ba42 Change signature of Clone. 7 yıl önce
Where.cs aacb761f40 Switch to ValueTask for predicates, selectors, etc. We await those ourselves and they are expected to be called in a high-frequency manner, so this seems to be the right choice. The only drawback is when these operators are used using method group conversion of a Task-returning async method, which is likely rare in query expressions where one typically uses (async) lambdas, and there's a workaround Task-to-ValueTask conversion. We can't overload on ValueTask and Task return types, so this seems the best way forward. 7 yıl önce
Zip.cs aacb761f40 Switch to ValueTask for predicates, selectors, etc. We await those ourselves and they are expected to be called in a high-frequency manner, so this seems to be the right choice. The only drawback is when these operators are used using method group conversion of a Task-returning async method, which is likely rare in query expressions where one typically uses (async) lambdas, and there's a workaround Task-to-ValueTask conversion. We can't overload on ValueTask and Task return types, so this seems the best way forward. 7 yıl önce