File: Types.hs

package info (click to toggle)
haskell-text-icu 0.6.3.4-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 272 kB
  • sloc: haskell: 718; ansic: 535; makefile: 2
file content (20 lines) | stat: -rw-r--r-- 578 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
-- |
-- Module      : Data.Text.ICU.Types
-- Copyright   : (c) 2010 Bryan O'Sullivan
--
-- License     : BSD-style
-- Maintainer  : bos@serpentine.com
-- Stability   : experimental
-- Portability : GHC
--
-- Types for use when manipulating Unicode text, using the bindings to
-- the International Components for Unicode (ICU) libraries.
module Data.Text.ICU.Types
    (
    -- * Widely used types
      LocaleName(..)
    , ParseError(errError, errLine, errOffset)
    ) where

import Data.Text.ICU.Error.Internal (ParseError(..))
import Data.Text.ICU.Internal (LocaleName(..))