summaryrefslogtreecommitdiffstats
path: root/src/Blessings/ByteString.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Blessings/ByteString.hs')
-rw-r--r--src/Blessings/ByteString.hs20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/Blessings/ByteString.hs b/src/Blessings/ByteString.hs
deleted file mode 100644
index 4fe66cc..0000000
--- a/src/Blessings/ByteString.hs
+++ /dev/null
@@ -1,20 +0,0 @@
-{-# OPTIONS_GHC -fno-warn-orphans #-}
-
-module Blessings.ByteString
- ( module Blessings
- ) where
-
-import Blessings
-import Blessings.Internal
-import qualified Data.ByteString.Char8 as B
-
-
-instance Blessable B.ByteString where
- length = B.length
- drop = B.drop
- take = B.take
- splitAt = B.splitAt
- break = B.break
- intercalate = B.intercalate
- fromWord8 = B.pack . Prelude.show
- show = B.pack . Prelude.show