summaryrefslogtreecommitdiff
path: root/Presence/ByteStringOperators.hs
blob: 2815f05a870e6d2af74f7fbec5b7b54985703784 (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
module ByteStringOperators where

import qualified Data.ByteString as S (ByteString)
import Data.ByteString.Lazy.Char8 as L 

-- 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 <++.>

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


instance NFData L.ByteString where
    rnf L.Empty       = ()
    rnf (L.Chunk _ b) = rnf b