Mercurial > urweb
view lib/ur/char.urs @ 1514:3c0803c1acd7
Backpedal on tutorial-motivated urweb-mode changes; add Basis.diffInSeconds and Basis.toSeconds
author | Adam Chlipala <adam@chlipala.net> |
---|---|
date | Fri, 22 Jul 2011 15:39:38 -0400 |
parents | e1cf925e2074 |
children |
line wrap: on
line source
type t = char val isAlnum : t -> bool val isAlpha : t -> bool val isBlank : t -> bool val isCntrl : t -> bool val isDigit : t -> bool val isGraph : t -> bool val isLower : t -> bool val isPrint : t -> bool val isPunct : t -> bool val isSpace : t -> bool val isUpper : t -> bool val isXdigit : t -> bool val toLower : t -> t val toUpper : t -> t val toInt : t -> int val fromInt : int -> t