Skip to content
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
1 change: 1 addition & 0 deletions MoreAsyncLINQ.sln
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,4 @@ Global
EndGlobalSection
EndGlobal


1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,6 @@ Returns a sequence of tuples of an element and its zero-based index in the sourc

### IndexBy


Applies a key-generating function to each element of a sequence and returns
a sequence that contains the elements of the original sequence as well its
key and index inside the group of its key. An additional argument specifies
Expand Down
1 change: 1 addition & 0 deletions src/MoreAsyncLINQ/Operators/FullGroupJoin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -254,3 +254,4 @@ static async IAsyncEnumerable<TResult> Core(
}
}


1 change: 1 addition & 0 deletions tests/MoreAsyncLINQ.Tests/BreakingSequence.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ public sealed class BreakingSequence<T> : IAsyncEnumerable<T>
public IAsyncEnumerator<T> GetAsyncEnumerator(CancellationToken cancellationToken) =>
throw new InvalidOperationException("Sequence should not be enumerated.");
}

Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,4 @@ public async Task From_ArrayFunctions_Compiles()
}



Original file line number Diff line number Diff line change
Expand Up @@ -106,3 +106,4 @@ await _first.FullJoin(
}



Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ public async Task Generate_Compiles()
}



Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,4 @@ public async Task IndexBy_AsyncWithComparer_Compiles()
}



Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@ public async Task Index_Compiles()
}



Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@ public async Task Insert_Compiles()
}



Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,4 @@ public async Task Interleave_Params_Compiles()
}



Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,4 @@ public async Task Lag_AsyncWithDefault_Compiles()
}



Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,4 @@ public async Task Lead_AsyncWithDefault_Compiles()
}



Original file line number Diff line number Diff line change
Expand Up @@ -98,3 +98,4 @@ await _first.LeftJoin(
}



Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,4 @@ public async Task Move_Compiles()
}



Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,4 @@ public async Task OrderBy_AsyncWithComparer_Compiles()
}



Original file line number Diff line number Diff line change
Expand Up @@ -124,3 +124,4 @@ await _first.OrderedMerge(
}



Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,4 @@ public async Task PadStart_AsyncSelector_Compiles()
}



Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,4 @@ public async Task Pad_AsyncSelector_Compiles()
}



Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,4 @@ public async Task Pairwise_Async_Compiles()
}



Original file line number Diff line number Diff line change
Expand Up @@ -54,3 +54,4 @@ public async Task PartialSortBy_AsyncWithComparerAndDirection_Compiles()
}



Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,4 @@ public async Task PartialSort_WithComparerAndDirection_Compiles()
}



Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,4 @@ await _source.PartitionAsync(
}



Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,4 @@ public async Task Pipe_Async_Compiles()
}



Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,4 @@ public async Task PreScan_Async_Compiles()
}



Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,4 @@ public async Task Repeat_Forever_Compiles()
}



Original file line number Diff line number Diff line change
Expand Up @@ -98,3 +98,4 @@ await _first.RightJoin(
}



Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,4 @@ public async Task RunLengthEncode_WithComparer_Compiles()
}



Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,4 @@ await _source.ScanBy(
}



Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,4 @@ public async Task ScanRight_AsyncWithSeed_Compiles()
}



Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,4 @@ public async Task Scan_AsyncWithSeed_Compiles()
}



Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,4 @@ public async Task Segment_AsyncPredicateWithIndexAndPrevious_Compiles()
}



Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,4 @@ public async Task SkipUntil_Async_Compiles()
}



Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,4 @@ public async Task Slice_Compiles()
}



Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,4 @@ public async Task SortedMerge_WithComparer_Compiles()
}



Original file line number Diff line number Diff line change
Expand Up @@ -54,3 +54,4 @@ public async Task Split_AsyncPredicateWithCount_Compiles()
}



Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,4 @@ public async Task StartsWithAsync_WithComparer_Compiles()
}



Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,4 @@ public async Task TakeUntil_Async_Compiles()
}



Original file line number Diff line number Diff line change
Expand Up @@ -41,3 +41,4 @@ await _source.OrderBy((x, _) => ValueTask.FromResult(x.Item1), Ascending)
}



Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,4 @@ public async Task Trace_AsyncFormatter_Compiles()
}



Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,4 @@ public async Task WindowRight_Compiles()
}