summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2008-09-07 10:48:51 -0400
committerGravatar Adam Chlipala <adamc@hcoop.net>2008-09-07 10:48:51 -0400
commite5636bb18cfe24bb8aa8dd0df64dfe781622371c (patch)
tree73dd7a8f6b59a3bf6347d879b7bdb46bc8747ed6 /lib
parentdbb9192edae68feb230b5b231fcaf10fd68103e8 (diff)
'show' type class; htmlification optimizations
Diffstat (limited to 'lib')
-rw-r--r--lib/basis.urs7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/basis.urs b/lib/basis.urs
index 14b6d464..22a033a0 100644
--- a/lib/basis.urs
+++ b/lib/basis.urs
@@ -27,6 +27,13 @@ val intToString : int -> string
val floatToString : float -> string
val boolToString : bool -> string
+class show
+val show : t ::: Type -> show t -> t -> string
+val show_int : show int
+val show_float : show float
+val show_string : show string
+val show_bool : show bool
+
(** SQL *)