comparison lib/ur/string.urs @ 1122:85d194409b17

Reduce concatenations of the empty record; unpoly non-recursive functions
author Adam Chlipala <adamc@hcoop.net>
date Sun, 10 Jan 2010 13:44:22 -0500
parents eaba663fd6aa
children 94e83c5533d2
comparison
equal deleted inserted replaced
1121:0cee0c8d8c37 1122:85d194409b17
18 18
19 val split : t -> char -> option (string * string) 19 val split : t -> char -> option (string * string)
20 val msplit : {Haystack : t, Needle : t} -> option (string * char * string) 20 val msplit : {Haystack : t, Needle : t} -> option (string * char * string)
21 21
22 val all : (char -> bool) -> string -> bool 22 val all : (char -> bool) -> string -> bool
23
24 val newlines : ctx ::: {Unit} -> [[Body] ~ ctx] => string -> xml ([Body] ++ ctx) [] []