blob: d914818c805e75114fcc276a78e89a6ce17efb00 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{-# 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
intercalate = B.intercalate
fromWord8 = B.pack . show
|