For a majority of methods, we can inherit doc from `SuperEnumerable` matching methods. There are two ways we can do this: 1. We can simply use `<inheritdoc/>`. If we use this method, we will be unable to add documentation for `CancellationToken` parameters, due to https://github.com/dotnet/roslyn/issues/40325. However, this approach is simplest. 2. We can add a source-generator to pull documentation in from `SuperLinq` and apply them to `SuperLinq.Async` via partial methods.
For a majority of methods, we can inherit doc from
SuperEnumerablematching methods. There are two ways we can do this:<inheritdoc/>. If we use this method, we will be unable to add documentation forCancellationTokenparameters, due to CS1573, CS1712 warnings shouldn't appear when inheriting docs dotnet/roslyn#40325. However, this approach is simplest.SuperLinqand apply them toSuperLinq.Asyncvia partial methods.