summaryrefslogtreecommitdiffstats
path: root/src/Blessings/ByteString
diff options
context:
space:
mode:
authortv <tv@krebsco.de>2026-03-07 23:28:58 +0100
committertv <tv@krebsco.de>2026-03-08 04:01:23 +0100
commitae9f49e0a6e7d5a0c906d8e4fd153ad553cdecf1 (patch)
tree8dbb213f5796da9215742afa9d30682e3dcc5dd0 /src/Blessings/ByteString
parenta6dd9834628614c0b7c815165bc0cf4139131b8c (diff)
use mono-traversable
Diffstat (limited to 'src/Blessings/ByteString')
-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