]> git.immae.eu Git - github/fretlink/text-pipes.git/commitdiff
clean up exports in Pipes.Text.Encoding
authormichaelt <what_is_it_to_do_anything@yahoo.com>
Sat, 15 Feb 2014 19:59:14 +0000 (14:59 -0500)
committermichaelt <what_is_it_to_do_anything@yahoo.com>
Sat, 15 Feb 2014 19:59:14 +0000 (14:59 -0500)
Pipes/Text/Encoding.hs

index 0ab6096132c782218760c75fb6ba2dbe2d10c32f..a8be8e4446928ef34aabac7436baffe275ba282b 100644 (file)
@@ -1,26 +1,24 @@
 
 {-# LANGUAGE RankNTypes, BangPatterns #-}
 -- |
--- Copyright: 2014 Michael Thompson
---
+
 -- This module uses the stream decoding functions from the text-stream-decoding package
 -- to define pipes decoding functions and lenses.
 
 module Pipes.Text.Encoding
-    ( DecodeResult (..)
-    , Codec
-    , decodeUtf8
-    , decodeUtf8Pure
-    , decodeUtf16LE
-    , decodeUtf16BE
-    , decodeUtf32LE
-    , decodeUtf32BE
+    ( Codec
     , utf8
     , utf8Pure
     , utf16LE
     , utf16BE
     , utf32LE
     , utf32BE
+    , decodeUtf8
+    , decodeUtf8Pure
+    , decodeUtf16LE
+    , decodeUtf16BE
+    , decodeUtf32LE
+    , decodeUtf32BE
     , encodeAscii
     , decodeAscii
     , encodeIso8859_1
@@ -37,6 +35,7 @@ import qualified Data.Text as T
 import qualified Data.Text.Encoding as TE 
 import Data.Text.StreamDecoding
 import Control.Monad (join)
+import Data.Word (Word8)
 import Pipes