diff options
author | Adam Chlipala <adam@chlipala.net> | 2011-01-11 14:03:54 -0500 |
---|---|---|
committer | Adam Chlipala <adam@chlipala.net> | 2011-01-11 14:03:54 -0500 |
commit | 138f64b8f02f05e6073f61b1db2c3d5e805b75c0 (patch) | |
tree | 07c262b05b9acf20fbb9aaaef74b8a2b300ad330 /lib/ur/string.urs | |
parent | d6cee9f01237ec6c6ebb2843a33eda0da89fd5bb (diff) |
String processing optimizations
Diffstat (limited to 'lib/ur/string.urs')
-rw-r--r-- | lib/ur/string.urs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/ur/string.urs b/lib/ur/string.urs index 552da557..52aa27b6 100644 --- a/lib/ur/string.urs +++ b/lib/ur/string.urs @@ -3,6 +3,7 @@ type t = string val str : char -> t val length : t -> int +val lengthGe : t -> int -> bool val append : t -> t -> t |