diff options
Diffstat (limited to 'lib/basis.urs')
-rw-r--r-- | lib/basis.urs | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/lib/basis.urs b/lib/basis.urs index 22a033a0..e6072690 100644 --- a/lib/basis.urs +++ b/lib/basis.urs @@ -6,7 +6,7 @@ type unit = {} datatype bool = False | True -(*datatype option t = None | Some of t*) +datatype option t = None | Some of t (** Basic type classes *) @@ -23,10 +23,6 @@ val eq_bool : eq bool val strcat : string -> string -> string -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 @@ -34,6 +30,8 @@ val show_float : show float val show_string : show string val show_bool : show bool +val stringToInt : string -> option int + (** SQL *) |