diff lib/ur/string.ur @ 829:20fe00fd81da

Substring functions; fix a nasty MonoReduce pattern match substitution bug
author Adam Chlipala <adamc@hcoop.net>
date Sat, 30 May 2009 13:29:00 -0400
parents 14a6c0971d89
children 5e1a4b12c83a
line wrap: on
line diff
--- a/lib/ur/string.ur	Sat May 30 09:59:10 2009 -0400
+++ b/lib/ur/string.ur	Sat May 30 13:29:00 2009 -0400
@@ -5,3 +5,14 @@
 
 val sub = Basis.strsub
 val suffix = Basis.strsuffix
+
+val index = Basis.strindex
+val atFirst = Basis.strchr
+
+fun substring s {Start = start, Len = len} = Basis.substring s start len
+
+fun split s ch =
+    case index s ch of
+        None => None
+      | Some i => Some (substring s {Start = 0, Len = i},
+                        substring s {Start = i + 1, Len = length s - i - 1})