summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2008-09-07 11:41:04 -0400
committerGravatar Adam Chlipala <adamc@hcoop.net>2008-09-07 11:41:04 -0400
commit9ae8932c978ab9c12f683745b47b3e0898581635 (patch)
tree92fd1f76d01cbe023599cb2d43215f82fb552960 /lib
parent5cf1d4d086475575a31f57413c57c22bd6fda378 (diff)
Parsing strings for floats and bools
Diffstat (limited to 'lib')
-rw-r--r--lib/basis.urs2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/basis.urs b/lib/basis.urs
index e6072690..4275e195 100644
--- a/lib/basis.urs
+++ b/lib/basis.urs
@@ -31,6 +31,8 @@ val show_string : show string
val show_bool : show bool
val stringToInt : string -> option int
+val stringToFloat : string -> option float
+val stringToBool : string -> option bool
(** SQL *)