summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2008-08-31 15:18:00 -0400
committerGravatar Adam Chlipala <adamc@hcoop.net>2008-08-31 15:18:00 -0400
commit959f07d717b29f083b275333b38e40e5b9f78a9d (patch)
tree12350e6dcc8fba4e292634d86afb756bf466b210 /lib
parent6a144b5f5a7e85a02465aa25a19c3b5686e062cb (diff)
Add 'ne' to 'eq' type class
Diffstat (limited to 'lib')
-rw-r--r--lib/basis.urs2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/basis.urs b/lib/basis.urs
index bc4c9481..c83ec044 100644
--- a/lib/basis.urs
+++ b/lib/basis.urs
@@ -11,8 +11,8 @@ datatype bool = False | True
class eq
val eq : t ::: Type -> eq t -> t -> t -> bool
+val ne : t ::: Type -> eq t -> t -> t -> bool
val eq_int : eq int
-val eq_float : eq float
val eq_string : eq string
val eq_bool : eq bool