| 4 | | ----------------------------------------------------------------------------- |
| 5 | | -- | |
| 6 | | -- Module : GHC.Unicode |
| 7 | | -- Copyright : (c) The University of Glasgow, 2003 |
| 8 | | -- License : see libraries/base/LICENSE |
| 9 | | -- |
| 10 | | -- Maintainer : cvs-ghc@haskell.org |
| 11 | | -- Stability : internal |
| 12 | | -- Portability : non-portable (GHC extensions) |
| 13 | | -- |
| 14 | | -- Implementations for the character predicates (isLower, isUpper, etc.) |
| 15 | | -- and the conversions (toUpper, toLower). The implementation uses |
| 16 | | -- libunicode on Unix systems if that is available. |
| 17 | | -- |
| 18 | | ----------------------------------------------------------------------------- |
| | 4 | |
| | 5 | {- |
| | 6 | Unicode internals. |
| | 7 | |
| | 8 | Sí na veth bâden im derel |
| | 9 | Vi dúath dofn tummen. |
| | 10 | Atham meraid velig a tynd |
| | 11 | Athan eryd bain beraidh. |
| | 12 | Or 'waith bain nura Anor |
| | 13 | A panlû elin cuinar |
| | 14 | Ú-pedithon 'i-aur gwann' |
| | 15 | Egor nai îl 'namarië'. |
| | 16 | -} |
| | 17 | |
| | 18 | -- Based on the GHC.Unicode library, Copyright 2005, Dimitry Golubovsky. |
| | 19 | -- See GHC's LICENSE file for the full license text. |