Safe Haskell | Safe-Inferred |
---|---|
Language | Haskell2010 |
Synopsis
- data ByteString
- writeByteStringToFile :: MonadIO m => FilePath -> ByteString -> m ()
- type LazyByteString = ByteString
- putLazyByteString :: MonadIO m => LazyByteString -> m ()
ByteString re-exports
data ByteString #
A space-efficient representation of a Word8
vector, supporting many
efficient operations.
A ByteString
contains 8-bit bytes, or by using the operations from
Data.ByteString.Char8 it can be interpreted as containing 8-bit
characters.
Instances
ByteString functions
writeByteStringToFile :: MonadIO m => FilePath -> ByteString -> m () Source #
LazyByteString type alias
We created a type alias for LazyByteString.ByteString simply called LazyByteString.
type LazyByteString = ByteString Source #
LazyByteString functions
putLazyByteString :: MonadIO m => LazyByteString -> m () Source #