Mercurial > urweb
diff lib/basis.urs @ 286:ffe5b01908ae
'show' type class; htmlification optimizations
author | Adam Chlipala <adamc@hcoop.net> |
---|---|
date | Sun, 07 Sep 2008 10:48:51 -0400 |
parents | e89076c41c39 |
children | 4260ad920c36 |
line wrap: on
line diff
--- a/lib/basis.urs Sun Sep 07 10:20:42 2008 -0400 +++ b/lib/basis.urs Sun Sep 07 10:48:51 2008 -0400 @@ -27,6 +27,13 @@ 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 *)