-
Notifications
You must be signed in to change notification settings - Fork 100
Add isSubsetOf #127
New issue
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
Comments
I'm also interested in having a
|
I would very much like a subset-testing function too. |
Yes, this seems like a good idea. Let's do it the fastest way. I've been wanting to add |
|
Data.Set
has a fuctionisSubsetOf :: Ord a => Set a -> Set a -> Bool
. I needed the corresponding function forData.HashSet
, and it should be possible to implement it more efficiently than can be done through the public interface ofData.HashSet
currently.The text was updated successfully, but these errors were encountered: