We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c774612 commit ef406ddCopy full SHA for ef406dd
1 file changed
src/Vatras/Framework/Definitions.agda
@@ -66,17 +66,11 @@ and hence expressions are parameterized in the type of this atomic data.
66
module _ where
67
open import Data.String using (String; _≟_)
68
69
- _String≟_ : DecidableEquality String
70
- _String≟_ = _≟_
71
-
72
STRING : 𝔸
73
- STRING = String and _String≟_
+ STRING = String and _≟_
74
75
76
open import Data.Nat using (ℕ; _≟_)
77
78
- _ℕ≟_ : DecidableEquality ℕ
79
- _ℕ≟_ = _≟_
80
81
NAT : 𝔸
82
- NAT = ℕ and _ℕ≟_
+ NAT = ℕ and _≟_
0 commit comments