hw-xml-0.4.0.2: src/HaskellWorks/Data/Xml/Internal/ByteString.hs
module HaskellWorks.Data.Xml.Internal.ByteString
( repartitionMod8
) where
import Data.ByteString (ByteString)
import qualified Data.ByteString as BS
repartitionMod8 :: ByteString -> ByteString -> (ByteString, ByteString)
repartitionMod8 aBS bBS = (BS.take cLen abBS, BS.drop cLen abBS)
where abBS = BS.concat [aBS, bBS]
abLen = BS.length abBS
cLen = (abLen `div` 8) * 8
{-# INLINE repartitionMod8 #-}