module ByteString ( -- * ByteString ByteString , all , any , asHexadecimal , break , breakAfter , breakEnd , breakOn , breakSubstring , concat , concatMap , copy , count , drop , dropWhile , elem , elemIndex , elemIndexEnd , elemIndices , filter , find , findIndex , findIndices , foldl' , foldr , group , groupBy , index , indices , inits , intercalate , intersperse , isInfixOf , isPrefixOf , isSuffixOf , length , map , mapAccumL , mapAccumR , nonOverlappingIndices , notElem , null , pack , packCString , packCStringLen , partition , random , replace , replicate , reverse , scanl , scanl1 , scanr , scanr1 , singleton , snoc , sort , span , spanEnd , split , splitAt , splitKeepEnd , splitKeepFront , splitWith , stripPrefix , stripSuffix , tails , take , takeWhile , transpose , uncons , unfoldr , unfoldrN , unpack , unsnoc , unzip , useAsCString , useAsCStringLen , zip , zipWith -- ** Optics , bytes , packedBytes , unpackedBytes ) where import Data.ByteString hiding (split) import Data.ByteString.Lens (bytes, packedBytes, unpackedBytes) import Data.ByteString.Lex.Integral (asHexadecimal) import Data.ByteString.Random.MWC (random) import Data.ByteString.Search (breakAfter, breakOn, indices, nonOverlappingIndices, replace, split, splitKeepEnd, splitKeepFront)