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
See #79.
Ord and Eq instances for Some... could be automatically derived.
Ord
Eq
Some...
And we could use the some package for Existential.hs.
some
Existential.hs
instance Eq (SomeUni f) where Some u1 == Some u2 = withGeqUni u1 u2 False True instance Ord (SomeUni f) where
Some (UniConst Vector v1) == Some (UniConst Vector v2) = v1 == v2 Some (UniConst Bool _) == _ = False Some (UniConst Field _) == _ = False Some (UniConst Vector _) == _ = False
The text was updated successfully, but these errors were encountered:
No branches or pull requests
See #79.
Ord
andEq
instances forSome...
could be automatically derived.And we could use the
some
package forExistential.hs
.The text was updated successfully, but these errors were encountered: