
20 Sep
2012
20 Sep
'12
11:59 a.m.
On 20 September 2012 17:57, Bas van Dijk
toLower :: Word8 -> Word8 toLower w | 65 <= w && w <= 90 || 192 <= w && w <= 214 || 216 <= w && w <= 222 = w + 32 | otherwise = w
BTW if nobody minds the extra dependency, I would probably accept a patch that replaces these numbers by nicer looking symbols from your word8 package.