| Safe Haskell | Safe |
|---|---|
| Language | Haskell2010 |
Prelude.Bitpacked.Types
Description
This module export Text, ByteString, LText, and LByteString
- data Text :: *
- data ByteString :: *
- type LText = Text
- type LByteString = ByteString
Documentation
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.
type LByteString = ByteString Source