Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Nicola Botta
IdrisLibs2
Commits
4f8a19f6
Commit
4f8a19f6
authored
Dec 21, 2020
by
Nicola Botta
Browse files
Initial.
parent
e59779e5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Decidable/Predicates.lidr
0 → 100644
View file @
4f8a19f6
> module Decidable.Predicates
> %default total
> %access public export
> Dec0 : Type -> Type
> Dec0 = Dec
> Dec1 : {A : Type} -> (P : A -> Type) -> Type
> Dec1 {A} P = (a : A) -> Dec0 (P a)
> DecEq0 : Type -> Type
> DecEq0 A = (a1 : A) -> (a2 : A) -> Dec (a1 = a2)
> DecEq1 : {A : Type} -> (P : A -> Type) -> Type
> DecEq1 {A} P = (a : A) -> DecEq0 (P a)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment