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