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
For performance reasons, I do not provide Ord instances for Futures and Objects, e.g.:
{ Fut<Unit> f1; Fut<Unit> f2; f1 == f2; // this is fine f1 < f2; // cannot compile }
This means that futures and objects cannot be stored in fast Sets or being keys of fast Maps (elements are fine).
Could be potentially fixed by attaching to the future or object a thread-safe counter.
Equality for Futures&Objects is only provided.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
For performance reasons, I do not provide Ord instances for Futures and Objects, e.g.:
This means that futures and objects cannot be stored in fast Sets or being keys of fast Maps (elements are fine).
Could be potentially fixed by attaching to the future or object a thread-safe counter.
Equality for Futures&Objects is only provided.
The text was updated successfully, but these errors were encountered: