blob: 4453aca0046c2e4bfe08dfe9bff42c0f17c060ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
{-# LANGUAGE CPP #-}
module ByteStringOperators where
import qualified Data.ByteString as S (ByteString)
import Data.ByteString.Lazy.Char8 as L
import Control.Applicative
-- These two were imported to provide an NFData instance.
import qualified Data.ByteString.Lazy.Internal as L (ByteString(..))
import Control.DeepSeq
(<++>) :: ByteString -> ByteString -> ByteString
(<++.>) :: ByteString -> S.ByteString -> ByteString
(<.++>) :: S.ByteString -> ByteString -> ByteString
(<.++.>) :: S.ByteString -> S.ByteString -> ByteString
a <++> b = L.append a b
a <++.> b = L.append a (fromChunks [b])
a <.++> b = L.append (fromChunks [a]) b
a <.++.> b = fromChunks [a,b]
infixr 5 <.++.>
infixr 5 <.++>
infixr 5 <++>
infixr 5 <++.>
a <++$> b = fmap (a<++>) b
a <$++> b = fmap (<++>b) a
a <$++$> b = liftA2 (<++>) a b
infixr 6 <++$>
infixr 6 <$++>
infixr 6 <$++$>
Nothing <?++> b = b
Just a <?++> b = a <++> b
infixr 5 <?++>
a <++?> Nothing = a
a <++?> Just b = a <++> b
infixr 5 <++?>
bshow :: Show a => a -> ByteString
bshow = L.pack . show
#if MIN_VERSION_bytestring(0,10,0)
#else
instance NFData L.ByteString where
rnf L.Empty = ()
rnf (L.Chunk _ b) = rnf b
#endif
|