Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update public api files for v5.2.0 #492

Merged
merged 1 commit into from
Aug 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 12 additions & 4 deletions Source/SuperLinq.Async/PublicAPI/net6.0/PublicAPI.Shipped.txt
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,10 @@ static SuperLinq.Async.AsyncSuperEnumerable.DoWhile<TSource>(this System.Collect
static SuperLinq.Async.AsyncSuperEnumerable.DoWhile<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource>! source, System.Func<System.Threading.Tasks.ValueTask<bool>>! condition) -> System.Collections.Generic.IAsyncEnumerable<TSource>!
static SuperLinq.Async.AsyncSuperEnumerable.ElementAtAsync<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource>! source, System.Index index, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.ValueTask<TSource>
static SuperLinq.Async.AsyncSuperEnumerable.ElementAtOrDefaultAsync<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource>! source, System.Index index, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.ValueTask<TSource?>
static SuperLinq.Async.AsyncSuperEnumerable.EndsWith<T>(this System.Collections.Generic.IAsyncEnumerable<T>! first, System.Collections.Generic.IAsyncEnumerable<T>! second) -> System.Threading.Tasks.ValueTask<bool>
static SuperLinq.Async.AsyncSuperEnumerable.EndsWith<T>(this System.Collections.Generic.IAsyncEnumerable<T>! first, System.Collections.Generic.IAsyncEnumerable<T>! second, System.Collections.Generic.IEqualityComparer<T>? comparer) -> System.Threading.Tasks.ValueTask<bool>
static SuperLinq.Async.AsyncSuperEnumerable.EndsWith<T>(this System.Collections.Generic.IAsyncEnumerable<T>! first, System.Collections.Generic.IEnumerable<T>! second) -> System.Threading.Tasks.ValueTask<bool>
static SuperLinq.Async.AsyncSuperEnumerable.EndsWith<T>(this System.Collections.Generic.IAsyncEnumerable<T>! first, System.Collections.Generic.IEnumerable<T>! second, System.Collections.Generic.IEqualityComparer<T>? comparer) -> System.Threading.Tasks.ValueTask<bool>
static SuperLinq.Async.AsyncSuperEnumerable.EndsWith<T>(this System.Collections.Generic.IAsyncEnumerable<T>! first, System.Collections.Generic.IAsyncEnumerable<T>! second, System.Collections.Generic.IEqualityComparer<T>? comparer, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.ValueTask<bool>
static SuperLinq.Async.AsyncSuperEnumerable.EndsWith<T>(this System.Collections.Generic.IAsyncEnumerable<T>! first, System.Collections.Generic.IAsyncEnumerable<T>! second, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.ValueTask<bool>
static SuperLinq.Async.AsyncSuperEnumerable.EndsWith<T>(this System.Collections.Generic.IAsyncEnumerable<T>! first, System.Collections.Generic.IEnumerable<T>! second, System.Collections.Generic.IEqualityComparer<T>? comparer, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.ValueTask<bool>
static SuperLinq.Async.AsyncSuperEnumerable.EndsWith<T>(this System.Collections.Generic.IAsyncEnumerable<T>! first, System.Collections.Generic.IEnumerable<T>! second, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.ValueTask<bool>
static SuperLinq.Async.AsyncSuperEnumerable.EquiZip<TFirst, TSecond, TResult>(this System.Collections.Generic.IAsyncEnumerable<TFirst>! first, System.Collections.Generic.IAsyncEnumerable<TSecond>! second, System.Func<TFirst, TSecond, TResult>! resultSelector) -> System.Collections.Generic.IAsyncEnumerable<TResult>!
static SuperLinq.Async.AsyncSuperEnumerable.EquiZip<TFirst, TSecond, TThird, TFourth, TResult>(this System.Collections.Generic.IAsyncEnumerable<TFirst>! first, System.Collections.Generic.IAsyncEnumerable<TSecond>! second, System.Collections.Generic.IAsyncEnumerable<TThird>! third, System.Collections.Generic.IAsyncEnumerable<TFourth>! fourth, System.Func<TFirst, TSecond, TThird, TFourth, TResult>! resultSelector) -> System.Collections.Generic.IAsyncEnumerable<TResult>!
static SuperLinq.Async.AsyncSuperEnumerable.EquiZip<TFirst, TSecond, TThird, TFourth>(this System.Collections.Generic.IAsyncEnumerable<TFirst>! first, System.Collections.Generic.IAsyncEnumerable<TSecond>! second, System.Collections.Generic.IAsyncEnumerable<TThird>! third, System.Collections.Generic.IAsyncEnumerable<TFourth>! fourth) -> System.Collections.Generic.IAsyncEnumerable<(TFirst, TSecond, TThird, TFourth)>!
Expand Down Expand Up @@ -355,6 +355,14 @@ static SuperLinq.Async.AsyncSuperEnumerable.TrySingle<T, TCardinality, TResult>(
static SuperLinq.Async.AsyncSuperEnumerable.TrySingle<T, TCardinality>(this System.Collections.Generic.IAsyncEnumerable<T>! source, TCardinality zero, TCardinality one, TCardinality many, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.ValueTask<(TCardinality Cardinality, T? Value)>
static SuperLinq.Async.AsyncSuperEnumerable.Using<TSource, TResource>(System.Func<TResource>! resourceFactory, System.Func<TResource, System.Collections.Generic.IAsyncEnumerable<TSource>!>! enumerableFactory) -> System.Collections.Generic.IAsyncEnumerable<TSource>!
static SuperLinq.Async.AsyncSuperEnumerable.Where<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource>! source, System.Collections.Generic.IAsyncEnumerable<bool>! filter) -> System.Collections.Generic.IAsyncEnumerable<TSource>!
static SuperLinq.Async.AsyncSuperEnumerable.WhereLag<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource>! source, int offset, System.Func<TSource, TSource?, bool>! predicate) -> System.Collections.Generic.IAsyncEnumerable<TSource>!
static SuperLinq.Async.AsyncSuperEnumerable.WhereLag<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource>! source, int offset, System.Func<TSource, TSource?, System.Threading.Tasks.ValueTask<bool>>! predicate) -> System.Collections.Generic.IAsyncEnumerable<TSource>!
static SuperLinq.Async.AsyncSuperEnumerable.WhereLag<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource>! source, int offset, TSource defaultLagValue, System.Func<TSource, TSource, bool>! predicate) -> System.Collections.Generic.IAsyncEnumerable<TSource>!
static SuperLinq.Async.AsyncSuperEnumerable.WhereLag<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource>! source, int offset, TSource defaultLagValue, System.Func<TSource, TSource, System.Threading.Tasks.ValueTask<bool>>! predicate) -> System.Collections.Generic.IAsyncEnumerable<TSource>!
static SuperLinq.Async.AsyncSuperEnumerable.WhereLead<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource>! source, int offset, System.Func<TSource, TSource?, bool>! predicate) -> System.Collections.Generic.IAsyncEnumerable<TSource>!
static SuperLinq.Async.AsyncSuperEnumerable.WhereLead<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource>! source, int offset, System.Func<TSource, TSource?, System.Threading.Tasks.ValueTask<bool>>! predicate) -> System.Collections.Generic.IAsyncEnumerable<TSource>!
static SuperLinq.Async.AsyncSuperEnumerable.WhereLead<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource>! source, int offset, TSource defaultLeadValue, System.Func<TSource, TSource, bool>! predicate) -> System.Collections.Generic.IAsyncEnumerable<TSource>!
static SuperLinq.Async.AsyncSuperEnumerable.WhereLead<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource>! source, int offset, TSource defaultLeadValue, System.Func<TSource, TSource, System.Threading.Tasks.ValueTask<bool>>! predicate) -> System.Collections.Generic.IAsyncEnumerable<TSource>!
static SuperLinq.Async.AsyncSuperEnumerable.While<TSource>(System.Func<bool>! condition, System.Collections.Generic.IAsyncEnumerable<TSource>! source) -> System.Collections.Generic.IAsyncEnumerable<TSource>!
static SuperLinq.Async.AsyncSuperEnumerable.While<TSource>(System.Func<System.Threading.Tasks.ValueTask<bool>>! condition, System.Collections.Generic.IAsyncEnumerable<TSource>! source) -> System.Collections.Generic.IAsyncEnumerable<TSource>!
static SuperLinq.Async.AsyncSuperEnumerable.Window<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource>! source, int size) -> System.Collections.Generic.IAsyncEnumerable<System.Collections.Generic.IList<TSource>!>!
Expand Down
16 changes: 0 additions & 16 deletions Source/SuperLinq.Async/PublicAPI/net6.0/PublicAPI.Unshipped.txt
Original file line number Diff line number Diff line change
@@ -1,17 +1 @@
#nullable enable
static SuperLinq.Async.AsyncSuperEnumerable.EndsWith<T>(this System.Collections.Generic.IAsyncEnumerable<T>! first, System.Collections.Generic.IAsyncEnumerable<T>! second, System.Collections.Generic.IEqualityComparer<T>? comparer, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.ValueTask<bool>
static SuperLinq.Async.AsyncSuperEnumerable.EndsWith<T>(this System.Collections.Generic.IAsyncEnumerable<T>! first, System.Collections.Generic.IAsyncEnumerable<T>! second, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.ValueTask<bool>
static SuperLinq.Async.AsyncSuperEnumerable.EndsWith<T>(this System.Collections.Generic.IAsyncEnumerable<T>! first, System.Collections.Generic.IEnumerable<T>! second, System.Collections.Generic.IEqualityComparer<T>? comparer, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.ValueTask<bool>
static SuperLinq.Async.AsyncSuperEnumerable.EndsWith<T>(this System.Collections.Generic.IAsyncEnumerable<T>! first, System.Collections.Generic.IEnumerable<T>! second, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.ValueTask<bool>
*REMOVED*static SuperLinq.Async.AsyncSuperEnumerable.EndsWith<T>(this System.Collections.Generic.IAsyncEnumerable<T>! first, System.Collections.Generic.IAsyncEnumerable<T>! second) -> System.Threading.Tasks.ValueTask<bool>
*REMOVED*static SuperLinq.Async.AsyncSuperEnumerable.EndsWith<T>(this System.Collections.Generic.IAsyncEnumerable<T>! first, System.Collections.Generic.IAsyncEnumerable<T>! second, System.Collections.Generic.IEqualityComparer<T>? comparer) -> System.Threading.Tasks.ValueTask<bool>
*REMOVED*static SuperLinq.Async.AsyncSuperEnumerable.EndsWith<T>(this System.Collections.Generic.IAsyncEnumerable<T>! first, System.Collections.Generic.IEnumerable<T>! second) -> System.Threading.Tasks.ValueTask<bool>
*REMOVED*static SuperLinq.Async.AsyncSuperEnumerable.EndsWith<T>(this System.Collections.Generic.IAsyncEnumerable<T>! first, System.Collections.Generic.IEnumerable<T>! second, System.Collections.Generic.IEqualityComparer<T>? comparer) -> System.Threading.Tasks.ValueTask<bool>
static SuperLinq.Async.AsyncSuperEnumerable.WhereLag<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource>! source, int offset, System.Func<TSource, TSource?, bool>! predicate) -> System.Collections.Generic.IAsyncEnumerable<TSource>!
static SuperLinq.Async.AsyncSuperEnumerable.WhereLag<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource>! source, int offset, System.Func<TSource, TSource?, System.Threading.Tasks.ValueTask<bool>>! predicate) -> System.Collections.Generic.IAsyncEnumerable<TSource>!
static SuperLinq.Async.AsyncSuperEnumerable.WhereLag<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource>! source, int offset, TSource defaultLagValue, System.Func<TSource, TSource, bool>! predicate) -> System.Collections.Generic.IAsyncEnumerable<TSource>!
static SuperLinq.Async.AsyncSuperEnumerable.WhereLag<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource>! source, int offset, TSource defaultLagValue, System.Func<TSource, TSource, System.Threading.Tasks.ValueTask<bool>>! predicate) -> System.Collections.Generic.IAsyncEnumerable<TSource>!
static SuperLinq.Async.AsyncSuperEnumerable.WhereLead<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource>! source, int offset, System.Func<TSource, TSource?, bool>! predicate) -> System.Collections.Generic.IAsyncEnumerable<TSource>!
static SuperLinq.Async.AsyncSuperEnumerable.WhereLead<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource>! source, int offset, System.Func<TSource, TSource?, System.Threading.Tasks.ValueTask<bool>>! predicate) -> System.Collections.Generic.IAsyncEnumerable<TSource>!
static SuperLinq.Async.AsyncSuperEnumerable.WhereLead<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource>! source, int offset, TSource defaultLeadValue, System.Func<TSource, TSource, bool>! predicate) -> System.Collections.Generic.IAsyncEnumerable<TSource>!
static SuperLinq.Async.AsyncSuperEnumerable.WhereLead<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource>! source, int offset, TSource defaultLeadValue, System.Func<TSource, TSource, System.Threading.Tasks.ValueTask<bool>>! predicate) -> System.Collections.Generic.IAsyncEnumerable<TSource>!
Loading