-
Notifications
You must be signed in to change notification settings - Fork 246
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
Make some Dec
operations more easily accessible?
#1229
Comments
pure : ∀ {ℓ} {a : Set ℓ} → a → Dec a
pure = yes
∅ : Dec ⊥
∅ = no ⊥-elim |
Doii, should have looked around more. Thanks |
No bother. I myself find it annoying that you have to import 3 or 4 modules to Edit: I have hijacked this issue to discuss such a change. |
Dec
sDec
operations more easily accessible?
I am definitely a big fan of having the "developer's library" be made of tons of small files with carefully crafted minimal dependencies, and a "user's library" with fewer modules that provide 'broad utility' with few imports. Both would be part of the standard library. |
Mimic structure of e.g. |
Hello there. I was doing some stuff with decidable equality and ended up needed the following operations:
Does it make any sense to add these to the
Relation.Nullary
module thatDec
is exported from?The text was updated successfully, but these errors were encountered: