Skip to content

Commit

Permalink
Remove outdated operators for version 6.0.0 (#607)
Browse files Browse the repository at this point in the history
  • Loading branch information
Head0nF1re authored Jan 20, 2024
1 parent c11c552 commit 31b61a2
Show file tree
Hide file tree
Showing 33 changed files with 143 additions and 1,552 deletions.
5 changes: 1 addition & 4 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -213,9 +213,6 @@ dotnet_diagnostic.IDE0290.severity = none # IDE0290: Use primary constructor
dotnet_diagnostic.IDE0028.severity = none # IDE0028: Simplify collection initialization
dotnet_diagnostic.IDE0305.severity = none # IDE0305: Simplify collection initialization

# For ScanEx()
dotnet_code_quality.ca1711.allowed_suffixes = Ex

# XML Documentation
dotnet_diagnostic.CS0105.severity = error # CS0105: Using directive is unnecessary.
dotnet_diagnostic.CS1573.severity = error # CS1573: Missing XML comment for parameter
Expand All @@ -240,7 +237,7 @@ dotnet_diagnostic.IDE0251.severity = none # IDE0251: Make member r
dotnet_diagnostic.RS0016.severity = error # RS0016: Add public types and members to the declared API
dotnet_diagnostic.RS0017.severity = error # RS0017: Remove deleted types and members from the declared API
# false positive for SuperLinq.Async CancellationTokens
dotnet_diagnostic.RS0026.severity = none # RS0026: Do not add multiple public overloads with optional parameters
dotnet_diagnostic.RS0026.severity = none # RS0026: Do not add multiple public overloads with optional parameters

# Bug in compiler
dotnet_diagnostic.CA1861.severity = none # CA1861: Avoid constant arrays as arguments
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -343,8 +343,6 @@ Concatenation refers to the operation of appending one sequence to another.
| OnErrorResumeNext | Concatenates one or more sequences regardless of if an error occurs in any of them. | [link](https://viceroypenguin.github.io/SuperLinq/api/SuperLinq.SuperEnumerable.OnErrorResumeNext.html) | [link](https://viceroypenguin.github.io/SuperLinq/api/SuperLinq.Async.AsyncSuperEnumerable.OnErrorResumeNext.html) |
| SortedMerge | Merges already-sorted sequences into a new correctly-sorted sequence. | [link](https://viceroypenguin.github.io/SuperLinq/api/SuperLinq.SuperEnumerable.SortedMerge.html) | [link](https://viceroypenguin.github.io/SuperLinq/api/SuperLinq.Async.AsyncSuperEnumerable.SortedMerge.html) |
| SortedMergeBy | Merges already-sorted sequences into a new correctly-sorted sequence according to a key value. | [link](https://viceroypenguin.github.io/SuperLinq/api/SuperLinq.SuperEnumerable.SortedMergeBy.html) | [link](https://viceroypenguin.github.io/SuperLinq/api/SuperLinq.Async.AsyncSuperEnumerable.SortedMergeBy.html) |
| SortedMergeByDescending | Merges already-sorted sequences into a new correctly-sorted sequence according to a key value. | [link](https://viceroypenguin.github.io/SuperLinq/api/SuperLinq.SuperEnumerable.SortedMergeByDescending.html) | [link](https://viceroypenguin.github.io/SuperLinq/api/SuperLinq.Async.AsyncSuperEnumerable.SortedMergeByDescending.html) |
| SortedMergeDescending | Merges already-sorted sequences into a new correctly-sorted sequence. | [link](https://viceroypenguin.github.io/SuperLinq/api/SuperLinq.SuperEnumerable.SortedMergeDescending.html) | [link](https://viceroypenguin.github.io/SuperLinq/api/SuperLinq.Async.AsyncSuperEnumerable.SortedMergeDescending.html) |

</details>

Expand Down
79 changes: 0 additions & 79 deletions Source/SuperLinq.Async/GenerateByIndex.cs

This file was deleted.

Loading

0 comments on commit 31b61a2

Please sign in to comment.