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
If "n mathematics, a join-semilattice (or upper semilattice) is a partially ordered set that has a join (a least upper bound)", shouldn't we have
class PartialOrd a => JoinSemiLattice a where class PartialOrd a => MeetSemiLattice a where
?
This would have pre-empted the problems reported in #53 and #52.
The text was updated successfully, but these errors were encountered:
That will make life hard for types without decidable equality, like JoinSemiLattice v => JoinSemiLattice (k -> v)
JoinSemiLattice v => JoinSemiLattice (k -> v)
Sorry, something went wrong.
Ah, that is problematic.
joinLeq
meetLeq
No branches or pull requests
If "n mathematics, a join-semilattice (or upper semilattice) is a partially ordered set that has a join (a least upper bound)", shouldn't we have
?
This would have pre-empted the problems reported in #53 and #52.
The text was updated successfully, but these errors were encountered: