
11 Sep
2012
11 Sep
'12
5:49 a.m.
Brandon Allbery wrote:
Probably an alias for backward compatibility; isAlpha is C-style
stuff, which was ASCII only, whereas isLetter is Unicode style.
Prelude Data.Char> all (\c -> isLetter c == isAlpha c) [minBound..maxBound] True Whew! You had me worried my code had unicode bugs. isAlpha == isLetter -- see shy jo