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