We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The AsyncObservable class's static Distinct and DistinctUntilChanged methods are not extension methods. This means that given some:
AsyncObservable
Distinct
DistinctUntilChanged
IAsyncObservable<int> xs = GetNums();
you can't write this:
xs.Distinct(); // or DistinctUntilChanged
You have to write this:
AsyncObservable.Distinct(xs);
This seems like a straightforward oversight. We just need to add the this keyword to these methods.
this
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Bug
The
AsyncObservable
class's staticDistinct
andDistinctUntilChanged
methods are not extension methods. This means that given some:you can't write this:
You have to write this:
This seems like a straightforward oversight. We just need to add the
this
keyword to these methods.The text was updated successfully, but these errors were encountered: