comparison lib/ur/char.urs @ 1128:e1cf925e2074

Allow escaped backslashes in literals; conversion betwixt int and char
author Adam Chlipala <adamc@hcoop.net>
date Tue, 12 Jan 2010 16:09:13 -0500
parents e8a35d710ab9
children
comparison
equal deleted inserted replaced
1127:f93dc2ea30c1 1128:e1cf925e2074
12 val isSpace : t -> bool 12 val isSpace : t -> bool
13 val isUpper : t -> bool 13 val isUpper : t -> bool
14 val isXdigit : t -> bool 14 val isXdigit : t -> bool
15 val toLower : t -> t 15 val toLower : t -> t
16 val toUpper : t -> t 16 val toUpper : t -> t
17
18 val toInt : t -> int
19 val fromInt : int -> t