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
impl PartialOrd
is_{sub,super}set
Instead of a.is_subset(b), we should be able to write a <= b.
a.is_subset(b)
a <= b
The text was updated successfully, but these errors were encountered:
An interesting proposal! My first reaction is positive, though I haven't yet devoted any real thought to whether this would cause any problems.
Please go ahead and write an implementation PR; while I kind of like this idea, it's very low on my personal priority list.
Sorry, something went wrong.
No branches or pull requests
Instead of
a.is_subset(b)
, we should be able to writea <= b
.The text was updated successfully, but these errors were encountered: